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