AlpacaLibrary/Include/Core/Classes/NamePair.hpp

30 lines
694 B
C++
Raw Normal View History

2018-02-24 12:59:53 +00:00
#ifndef NAMEPAIR_HPP_INCLUDED
#define NAMEPAIR_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include <string>
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 NamePair : public Object
{
public:
NamePair(const void* Obj);
2018-12-27 18:17:09 +00:00
NamePair() = default;
NamePair(NamePair&& Obj) = default;
NamePair(const NamePair& Obj) = default;
NamePair& operator=(NamePair&& Obj) = default;
NamePair& operator=(const NamePair& 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
std::string GetCleanName() const;
std::string GetName() 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 // NAMEPAIR_HPP_INCLUDED