]> SALOME platform Git repositories - modules/gui.git/blob - src/OBJECT/SALOME_GLOwner.h
Salome HOME
ENV: Windows porting.
[modules/gui.git] / src / OBJECT / SALOME_GLOwner.h
1 #ifndef SALOME_GLOWNER_H
2 #define SALOME_GLOWNER_H
3
4 #include <string>
5 //#include <GLViewer.h>
6 #include <GLViewer_Object.h>
7 #include <SALOME_Actor.h>
8
9 class SALOME_OBJECT_EXPORT SALOME_GLOwner : public GLViewer_Owner
10 {
11 public:
12   SALOME_GLOwner( const char* );
13   ~SALOME_GLOwner();
14
15   const char*       entry() const;
16   void              setEntry( const char* );
17
18 private:
19   std::string       myEntry;
20 };
21
22 #endif