Salome HOME
Initial version
[modules/gui.git] / src / OBJECT / SALOME_GLOwner.cxx
1
2 #include <SALOME_GLOwner.h>
3
4 SALOME_GLOwner::SALOME_GLOwner( const char* entry )
5 : GLViewer_Owner()
6 {
7   setEntry( entry );
8 }
9
10 SALOME_GLOwner::~SALOME_GLOwner()
11 {
12 }
13
14 const char* SALOME_GLOwner::entry() const
15 {
16   return myEntry.c_str();
17 }
18
19 void SALOME_GLOwner::setEntry( const char* entry )
20 {
21   myEntry = entry;
22 }