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