Go to the source code of this file.
◆ mCreateDataObj
| #define mCreateDataObj |
( |
|
clss | ) |
|
Value:{ \
return new clss; \
} \
\
private: \
{ return new clss; } \
clss& operator =(const clss&); \
clss(const clss&); \
public: \
clss(); \
static const char* getStaticClassName(); \
static const char* sFactoryKeyword(); \
virtual const char* getClassName() const
◆ mCreateFactoryEntry
| #define mCreateFactoryEntry |
( |
|
clss | ) |
|
Value:const char* clss::getStaticClassName() { return #clss; } \
const char* clss::getClassName() const \
{ return clss::getStaticClassName(); } \
const char* clss::sFactoryKeyword() { return #clss; } \
{ visBase::DataManager::factory().addCreator( \
createInternal, getStaticClassName() ); }
◆ mVisTrans