Salome HOME
PAL12607: Static objects in Geometry GUI libraries.
[modules/geom.git] / src / GEOM_I / GEOM_Object_i.hh
index 06bea0b09615fec8f0e8c635599d2e00c779141b..42b5f2781b37de80d6eecc39acd0f10fe5825427 100644 (file)
@@ -1,15 +1,35 @@
+// Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+// 
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either 
+// version 2.1 of the License.
+// 
+// This library is distributed in the hope that it will be useful 
+// but WITHOUT ANY WARRANTY; without even the implied warranty of 
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public  
+// License along with this library; if not, write to the Free Software 
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
 
 #ifndef _GEOM_Object_i_HeaderFile
 #define _GEOM_Object_i_HeaderFile
 
 
 #include <SALOMEconfig.h>
-
-#include CORBA_SERVER_HEADER(SALOMEDS)
+#include CORBA_CLIENT_HEADER(SALOMEDS)
 #include CORBA_SERVER_HEADER(GEOM_Gen)
 
 #include "SALOME_GenericObj_i.hh"
+
 #include "GEOM_Object.hxx"
+
 #include <TopoDS_Shape.hxx>
 
 class GEOM_Object_i : public virtual POA_GEOM::GEOM_Object, public virtual SALOME::GenericObj_i
@@ -17,22 +37,22 @@ class GEOM_Object_i : public virtual POA_GEOM::GEOM_Object, public virtual SALOM
  public:
    GEOM_Object_i(PortableServer::POA_ptr thePOA, GEOM::GEOM_Gen_ptr theEngine, Handle(GEOM_Object) theImpl);
    ~GEOM_Object_i();
-  
+
   virtual char* GetEntry();
-  
+
   virtual CORBA::Long GetStudyID();
-  
+
   virtual CORBA::Long GetType();
 
-  virtual GEOM::shape_type GetShapeType(); 
+  virtual GEOM::shape_type GetShapeType();
 
   virtual void SetName(const char* theName);
 
-  virtual char* GetName();    
+  virtual char* GetName();
 
   virtual void SetStudyEntry(const char* theEntry);
 
-  virtual char* GetStudyEntry();    
+  virtual char* GetStudyEntry();
 
   virtual GEOM::ListOfGO* GetDependency();
 
@@ -40,22 +60,22 @@ class GEOM_Object_i : public virtual POA_GEOM::GEOM_Object, public virtual SALOM
 
   virtual SALOMEDS::TMPFile* GetShapeStream();
 
-  long getShape();
+  virtual CORBA::Long getShape();
 
   virtual bool IsMainShape() { return _impl->IsMainShape(); }
 
-  virtual GEOM::ListOfLong* GetSubShapeIndices(); 
+  virtual GEOM::ListOfLong* GetSubShapeIndices();
+
   virtual GEOM::GEOM_Object_ptr GetMainShape();
 
-  virtual bool IsShape();   
+  virtual bool IsShape();
 
   Handle(GEOM_Object) GetImpl() { return _impl; }
 
  private:
 
-  GEOM::GEOM_Gen_ptr _engine; 
-  Handle(GEOM_Object) _impl;     
+  GEOM::GEOM_Gen_ptr _engine;
+  Handle(GEOM_Object) _impl;
   TopoDS_Shape _geom;
 };