AlpacaLibrary/Include/Core/Classes/FontName.hpp

29 lines
648 B
C++
Raw Normal View History

2018-06-28 02:22:43 +00:00
#ifndef FONTNAME_HPP_INCLUDED
#define FONTNAME_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include <string>
namespace Internal
{
class FontName : public Object
{
public:
FontName(const void* Obj);
2018-12-27 18:17:09 +00:00
FontName() = default;
FontName(FontName&& Obj) = default;
FontName(const FontName& Obj) = default;
FontName& operator=(FontName&& Obj) = default;
FontName& operator=(const FontName& Obj) = default;
2018-06-28 02:22:43 +00:00
static Class GetClass();
std::string GetName() const;
};
}
#endif // FONTNAME_HPP_INCLUDED