Salome HOME
PR: merge from branch BR_auto_V310 tag mergefrom_OCC_development_for_3_2_0a2_10mar06
[modules/kernel.git] / src / SALOMEDSClient / SALOMEDSClient_SObject.hxx
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 //  File   : SALOMEDSClient_SObject.hxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24 #ifndef __SALOMEDSCLIENT_SOBJECT_H__
25 #define __SALOMEDSCLIENT_SOBJECT_H__
26
27 // std C++ headers
28 #include <vector>
29 #include <string> 
30
31 #include "SALOMEDSClient_definitions.hxx"
32
33 class SALOMEDSClient_Study;
34 class SALOMEDSClient_SComponent;
35 class SALOMEDSClient_GenericAttribute;
36
37 class SALOMEDSClient_SObject
38 {
39 public:
40   virtual ~SALOMEDSClient_SObject() {}
41
42   virtual std::string GetID()  = 0;
43   virtual _PTR(SComponent) GetFatherComponent() = 0;
44   virtual _PTR(SObject)    GetFather() = 0;
45   virtual bool FindAttribute(_PTR(GenericAttribute)& anAttribute, const std::string& aTypeOfAttribute) = 0;
46   virtual bool ReferencedObject(_PTR(SObject)& theObject) = 0;
47   virtual bool FindSubObject(int theTag, _PTR(SObject)& theObject) = 0;
48   virtual _PTR(Study) GetStudy() = 0;
49   virtual std::string Name() = 0;
50   virtual void  Name(const std::string& theName)  = 0;
51   virtual std::vector<_PTR(GenericAttribute)> GetAllAttributes() = 0;
52   virtual std::string GetName() = 0;
53   virtual std::string GetComment() = 0;
54   virtual std::string GetIOR() = 0;
55   virtual int   Tag() = 0;
56   virtual int   Depth() = 0;
57 };
58
59 #endif