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