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