]> SALOME platform Git repositories - modules/gui.git/blob - src/OBJECT/SALOME_GLOwner.h
Salome HOME
Bug fixed: if 'splash' parameter is not set, then application crashed. Now OK.
[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_Object.h>
6
7 class Standard_EXPORT SALOME_GLOwner : public GLViewer_Owner
8 {
9 public:
10   SALOME_GLOwner( const char* );
11   ~SALOME_GLOwner();
12
13   const char*       entry() const;
14   void              setEntry( const char* );
15
16 private:
17   std::string       myEntry;
18 };
19
20 #endif