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