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