17 void SetClassType(std::string type) {
18 m_class = std::move(type);
21 const char* GetClassType()
const {
22 return m_class.c_str();
25 bool IsSameClass(
const char* classType)
const {
26 return std::equal(m_class.begin(), m_class.end(), classType);
30 return CORE->GetReflectionMgrCore()->CreateObject(name);