Go to the source code of this file.
#define mCreateDataObj |
( |
|
clss | ) |
|
Value:{ \
return new clss; \
} \
{ 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
DataObject is the base class off all objects that are used in Visualization and ought to be shared in...
Definition: visdata.h:65
#define private
Definition: winstreambuf.h:13
#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() ); }