AlpacaLibary  1.63
A closed source C++ bot for OSRS
ObjectNode.hpp
Go to the documentation of this file.
1 #ifndef OBJECTNODE_HPP_INCLUDED
2 #define OBJECTNODE_HPP_INCLUDED
3 
4 #include "Node.hpp"
5 #include "../JavaClass/Class.hpp"
6 #include "../JavaClass/Object.hpp"
7 
8 namespace Internal
9 {
10  class ObjectNode : public Node
11  {
12  public:
13  ObjectNode(const void* Obj);
14 
15  ObjectNode() = default;
16  ObjectNode(ObjectNode&& Obj) = default;
17  ObjectNode(const ObjectNode& Obj) = default;
19  ObjectNode& operator=(const ObjectNode& Obj) = default;
20 
21  static Class GetClass();
22 
23  Object GetObject() const;
24  };
25 }
26 
27 #endif // OBJECTNODE_HPP_INCLUDED
static Class GetClass()
ObjectNode(const ObjectNode &Obj)=default
ObjectNode & operator=(const ObjectNode &Obj)=default
Object GetObject() const
ObjectNode & operator=(ObjectNode &&Obj)=default
ObjectNode(ObjectNode &&Obj)=default
ObjectNode(const void *Obj)