AlpacaLibrary/Include/Core/Classes/Nameable.hpp

29 lines
655 B
C++
Raw Normal View History

2018-02-24 12:59:53 +00:00
#ifndef NAMEABLE_HPP_INCLUDED
#define NAMEABLE_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include "NamePair.hpp"
2018-03-18 14:38:29 +00:00
namespace Internal
2018-02-24 12:59:53 +00:00
{
2018-03-18 14:38:29 +00:00
class Nameable : public Object
{
public:
Nameable(const void* Obj);
2018-12-27 18:17:09 +00:00
Nameable() = default;
Nameable(Nameable&& Obj) = default;
Nameable(const Nameable& Obj) = default;
Nameable& operator=(Nameable&& Obj) = default;
Nameable& operator=(const Nameable& Obj) = default;
2018-03-18 14:38:29 +00:00
static Class GetClass();
2018-02-24 12:59:53 +00:00
2018-03-18 14:38:29 +00:00
NamePair GetNamePair() const;
2018-02-24 12:59:53 +00:00
2018-03-18 14:38:29 +00:00
};
}
2018-02-24 12:59:53 +00:00
#endif // NAMEABLE_HPP_INCLUDED