#include "vtkObject.h"
Include dependency graph for vtkObjectFactory.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Compounds | |
class | vtkObjectFactory |
abstract base class for vtkObjectFactories. More... | |
struct | vtkObjectFactory::OverrideInformation |
Defines | |
#define | VTK_CREATE_CREATE_FUNCTION(classname) |
#define | VTK_FACTORY_INTERFACE_EXPORT |
#define | VTK_FACTORY_INTERFACE_IMPLEMENT(factoryName) |
|
Value: static vtkObject* vtkObjectFactoryCreate##classname() \ { return classname::New(); } Definition at line 272 of file vtkObjectFactory.h. |
|
Definition at line 282 of file vtkObjectFactory.h. |
|
Value: extern "C" \ VTK_FACTORY_INTERFACE_EXPORT \ const char* vtkGetFactoryCompilerUsed() \ { \ return VTK_CXX_COMPILER; \ } \ extern "C" \ VTK_FACTORY_INTERFACE_EXPORT \ const char* vtkGetFactoryVersion() \ { \ return VTK_SOURCE_VERSION; \ } \ extern "C" \ VTK_FACTORY_INTERFACE_EXPORT \ vtkObjectFactory* vtkLoad() \ { \ return factoryName ::New(); \ } Definition at line 290 of file vtkObjectFactory.h. |