Salome HOME
CCAR: remove some memory leaks in SALOMEDS CORBA interface
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_SObject_i.hxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  File   : SALOMEDS_SObject_i.hxx
23 //  Author : Sergey RUIN
24 //  Module : SALOME
25 //
26 #ifndef __SALOMEDS_SOBJECT_I_H__
27 #define __SALOMEDS_SOBJECT_I_H__
28
29 // std C++ headers
30 #include <iostream>
31
32 // IDL headers
33 #include <SALOMEconfig.h>
34 #include CORBA_SERVER_HEADER(SALOMEDS)
35 #include <SALOME_GenericObj_i.hh>
36
37 // Cascade headers
38 #include "SALOMEDSImpl_SObject.hxx"
39
40 class Standard_EXPORT SALOMEDS_SObject_i: public virtual POA_SALOMEDS::SObject,
41                           public virtual PortableServer::ServantBase,
42                           public virtual SALOME::GenericObj_i
43 {
44 protected:
45   CORBA::ORB_var               _orb;
46   SALOMEDSImpl_SObject*        _impl;
47
48 public:
49
50   static SALOMEDS::SObject_ptr New(const SALOMEDSImpl_SObject&, CORBA::ORB_ptr); 
51   
52   SALOMEDS_SObject_i(const SALOMEDSImpl_SObject&, CORBA::ORB_ptr);
53   
54   virtual ~SALOMEDS_SObject_i();
55   
56   virtual char* GetID();
57   virtual SALOMEDS::SComponent_ptr GetFatherComponent();
58   virtual SALOMEDS::SObject_ptr    GetFather() ;
59   virtual CORBA::Boolean FindAttribute(SALOMEDS::GenericAttribute_out anAttribute, const char* aTypeOfAttribute);
60   virtual CORBA::Boolean ReferencedObject(SALOMEDS::SObject_out obj) ;
61   virtual CORBA::Boolean FindSubObject(CORBA::Long atag, SALOMEDS::SObject_out obj );
62
63   virtual SALOMEDS::Study_ptr    GetStudy() ;
64   virtual char* Name();
65   virtual void  Name(const char*);
66   virtual SALOMEDS::ListOfAttributes* GetAllAttributes();
67
68   virtual CORBA::Object_ptr GetObject();
69
70   virtual char* GetName();
71   virtual char* GetComment();
72   virtual char* GetIOR();
73
74   virtual CORBA::Short Tag();
75   virtual CORBA::Short Depth();
76
77   virtual CORBA::LongLong GetLocalImpl(const char* theHostname, CORBA::Long thePID, CORBA::Boolean& isLocal);
78 };
79
80 #endif