Salome HOME
Merge from V5_1_3_BR 07/12/2009
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_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   : SALOMEDSImpl_SObject.hxx
23 //  Author : Sergey RUIN
24 //  Module : SALOME
25 //
26 #ifndef __SALOMEDSIMPL_SOBJECT_H__
27 #define __SALOMEDSIMPL_SOBJECT_H__
28
29 #include "SALOMEDSImpl_Defines.hxx"
30
31 #include "DF_Label.hxx"
32 #include "DF_Attribute.hxx"
33 #include <string>
34 #include <vector>
35
36 class SALOMEDSImpl_SComponent;
37 class SALOMEDSImpl_Study;
38
39 class SALOMEDSIMPL_EXPORT SALOMEDSImpl_SObject
40 {
41 protected:
42   DF_Label     _lab;
43   std::string  _name;  
44   std::string  _value;
45   std::string  _type;
46
47 public:
48
49   SALOMEDSImpl_SObject();
50   SALOMEDSImpl_SObject(const DF_Label& theLabel);
51   SALOMEDSImpl_SObject(const SALOMEDSImpl_SObject& theSObject);
52   virtual ~SALOMEDSImpl_SObject();
53
54   virtual std::string GetID() const;
55   virtual SALOMEDSImpl_SComponent GetFatherComponent() const;
56   virtual SALOMEDSImpl_SObject GetFather() const ;
57   virtual bool FindAttribute(DF_Attribute*& theAttribute, const std::string& theTypeOfAttribute) const;
58   virtual bool ReferencedObject(SALOMEDSImpl_SObject& theObject) const ;
59   virtual bool FindSubObject(int theTag, SALOMEDSImpl_SObject& theObject);
60
61   virtual SALOMEDSImpl_Study*  GetStudy() const;
62   virtual std::string Name() const { return _name; }
63   virtual void Name(const std::string& theName) { _name = theName; }
64   virtual std::vector<DF_Attribute*> GetAllAttributes() const; 
65
66   virtual std::string GetName() const ;
67   virtual std::string GetComment() const;
68   virtual std::string GetIOR() const;
69
70   virtual int Tag() const { return _lab.Tag(); }
71   virtual int Depth() const { return _lab.Depth(); }
72
73   virtual DF_Label GetLabel() const { return _lab; }   
74
75   bool IsNull() const { return _lab.IsNull(); }
76
77   bool IsComponent() const;
78
79   operator SALOMEDSImpl_SComponent() const; 
80
81   operator bool () const { return !IsNull(); }
82
83   SALOMEDSImpl_SObject* GetPersistentCopy() const;
84
85   static std::string GetGUID(const std::string& theTypeOfAttribute);
86
87
88 };
89 #endif