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