Salome HOME
Join modifications from branch OCC_debug_for_3_2_0b1
[modules/geom.git] / src / GEOM_I / GEOM_Object_i.hh
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/
19 //
20
21 #ifndef _GEOM_Object_i_HeaderFile
22 #define _GEOM_Object_i_HeaderFile
23
24
25 #include <SALOMEconfig.h>
26 #include CORBA_CLIENT_HEADER(SALOMEDS)
27 #include CORBA_SERVER_HEADER(GEOM_Gen)
28
29 #include "SALOME_GenericObj_i.hh"
30
31 #include "GEOM_Object.hxx"
32
33 #include <TopoDS_Shape.hxx>
34
35 class GEOM_Object_i : public virtual POA_GEOM::GEOM_Object, public virtual SALOME::GenericObj_i
36 {
37  public:
38    GEOM_Object_i(PortableServer::POA_ptr thePOA, GEOM::GEOM_Gen_ptr theEngine, Handle(GEOM_Object) theImpl);
39    ~GEOM_Object_i();
40
41   virtual char* GetEntry();
42
43   virtual CORBA::Long GetStudyID();
44
45   virtual CORBA::Long GetType();
46
47   virtual GEOM::shape_type GetShapeType();
48
49   virtual void SetName(const char* theName);
50
51   virtual char* GetName();
52
53   virtual void SetStudyEntry(const char* theEntry);
54
55   virtual char* GetStudyEntry();
56
57   virtual GEOM::ListOfGO* GetDependency();
58
59   virtual GEOM::ListOfGO* GetLastDependency();
60
61   virtual SALOMEDS::TMPFile* GetShapeStream();
62
63   virtual CORBA::Long getShape();
64
65   virtual bool IsMainShape() { return _impl->IsMainShape(); }
66
67   virtual GEOM::ListOfLong* GetSubShapeIndices();
68
69   virtual GEOM::GEOM_Object_ptr GetMainShape();
70
71   virtual bool IsShape();
72
73   Handle(GEOM_Object) GetImpl() { return _impl; }
74
75  private:
76
77   GEOM::GEOM_Gen_ptr _engine;
78   Handle(GEOM_Object) _impl;
79   TopoDS_Shape _geom;
80 };
81
82 #endif