Salome HOME
Initial version
[modules/gui.git] / src / SVTK / SVTK_Trihedron.h
1 #ifndef SVTK_TRIHEDRON_H
2 #define SVTK_TRIHEDRON_H
3
4 #include "SVTK.h"
5
6 #include "VTKViewer_Trihedron.h"
7
8 class SVTK_EXPORT SVTK_Trihedron : public VTKViewer_Trihedron
9 {
10 protected:
11   SVTK_Trihedron();
12   SVTK_Trihedron(const SVTK_Trihedron&); // Not implemented
13   void operator = (const SVTK_Trihedron&); // Not implemented
14
15 public:
16   vtkTypeMacro(SVTK_Trihedron,VTKViewer_Trihedron);
17   static SVTK_Trihedron *New();
18   
19   virtual int GetVisibleActorCount(vtkRenderer* theRenderer);
20 };
21
22
23 #endif