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