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