Rendering/vtkGraphicsFactory.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00029 #ifndef __vtkGraphicsFactory_h
00030 #define __vtkGraphicsFactory_h
00031
00032 #include "vtkObject.h"
00033
00034 class VTK_RENDERING_EXPORT vtkGraphicsFactory : public vtkObject
00035 {
00036 public:
00037 static vtkGraphicsFactory *New();
00038 vtkTypeRevisionMacro(vtkGraphicsFactory,vtkObject);
00039 virtual void PrintSelf(ostream& os, vtkIndent indent);
00040
00043 static vtkObject* CreateInstance(const char* vtkclassname);
00044
00046 static const char *GetRenderLibrary();
00047
00049
00051 static void SetUseMesaClasses(int use);
00052 static int GetUseMesaClasses();
00054
00055 protected:
00056 vtkGraphicsFactory() {};
00057
00058 static int UseMesaClasses;
00059
00060 private:
00061 vtkGraphicsFactory(const vtkGraphicsFactory&);
00062 void operator=(const vtkGraphicsFactory&);
00063 };
00064
00065 #endif