Salome HOME
Fix for bug 10438: Crash during Explode on Blocks operation (Global selection on...
[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 #ifdef WNT
9 #define SALOME_OBJECT_EXPORT __declspec (dllexport)
10 #else
11 #define SALOME_OBJECT_EXPORT
12 #endif
13
14 class SALOME_OBJECT_EXPORT SALOME_GLOwner : public GLViewer_Owner
15 {
16 public:
17   SALOME_GLOwner( const char* );
18   ~SALOME_GLOwner();
19
20   const char*       entry() const;
21   void              setEntry( const char* );
22
23 private:
24   std::string       myEntry;
25 };
26
27 #endif