Salome HOME
merge from branch BR_V5_DEV
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_SObject.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.hxx
23 //  Author : Sergey RUIN
24 //  Module : SALOME
25 //
26 #ifndef __SALOMEDS_SOBJECT_H__
27 #define __SALOMEDS_SOBJECT_H__
28
29 // std C++ headers
30 #include <vector>
31
32 #include <SALOMEDSClient.hxx>
33
34 // IDL headers
35 #include <SALOMEconfig.h>
36 #include CORBA_SERVER_HEADER(SALOMEDS)
37
38 #include "SALOMEDSImpl_SObject.hxx"
39
40 class Standard_EXPORT SALOMEDS_SObject: public virtual SALOMEDSClient_SObject
41 {
42 protected:
43
44   bool                         _isLocal;
45   SALOMEDSImpl_SObject*        _local_impl;
46   SALOMEDS::SObject_var        _corba_impl;
47   CORBA::ORB_var               _orb;
48
49 public:
50   
51   SALOMEDS_SObject(SALOMEDS::SObject_ptr theSObject);
52   SALOMEDS_SObject(const SALOMEDSImpl_SObject& theSObject);       
53   virtual ~SALOMEDS_SObject();
54
55   virtual std::string GetID();
56   virtual _PTR(SComponent) GetFatherComponent();
57   virtual _PTR(SObject)    GetFather();
58   virtual bool FindAttribute(_PTR(GenericAttribute)& anAttribute, const std::string& aTypeOfAttribute);
59   virtual bool ReferencedObject(_PTR(SObject)& theObject);
60   virtual bool FindSubObject(int theTag, _PTR(SObject)& theObject);
61   virtual _PTR(Study) GetStudy();
62   virtual std::string Name();
63   virtual void  Name(const std::string& theName);
64   virtual std::vector<_PTR(GenericAttribute)> GetAllAttributes();
65   virtual std::string GetName();
66   virtual std::string GetComment();
67   virtual std::string GetIOR();
68   virtual int   Tag();
69   virtual int   Depth();
70
71   CORBA::Object_ptr GetObject();
72   SALOMEDS::SObject_ptr GetSObject();
73
74   SALOMEDS::SObject_ptr        GetCORBAImpl() { return SALOMEDS::SObject::_duplicate(_corba_impl); }
75   SALOMEDSImpl_SObject*        GetLocalImpl() { return _local_impl; } 
76
77 private:
78   void init_orb();
79 };
80
81 #endif