]> SALOME platform Git repositories - modules/gui.git/blob - src/OBJECT/SALOME_GLOwner.h
Salome HOME
e541f23f0543c893f5bd61a5f6ff745c736443bf
[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
8 class GLVIEWER_API SALOME_GLOwner : public GLViewer_Owner
9 {
10 public:
11   SALOME_GLOwner( const char* );
12   ~SALOME_GLOwner();
13
14   const char*       entry() const;
15   void              setEntry( const char* );
16
17 private:
18   std::string       myEntry;
19 };
20
21 #endif