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