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