You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nmWATI/Include/iBase/Interface/IxDynObj.h

21 lines
261 B
C++

#pragma once
#include "IxInterface.h"
// 动态对象
class IxDynObj
: virtual public IxInterface
{
public:
// 获取类名
virtual const char* getClassName() const = 0;
// 获取Tag
virtual const char* getTagName() const = 0;
};