Version: 8.3.0
SALOMEDSImpl_SObject.hxx
Go to the documentation of this file.
1 // Copyright (C) 2007-2016 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, 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 
38 class SALOMEDSImpl_Study;
39 
41 {
42 protected:
44  std::string _name;
45  std::string _value;
46  std::string _type;
47 
48 public:
49 
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 SALOMEDSImpl_Study* GetStudy() const;
64  virtual std::string Name() const { return _name; }
65  virtual void Name(const std::string& theName) { _name = theName; }
66  virtual std::vector<DF_Attribute*> GetAllAttributes() const;
67 
68  virtual std::string GetName() const ;
69  virtual std::string GetComment() const;
70  virtual std::string GetIOR() const;
71  virtual void SetAttrString(const std::string& name,const std::string& value);
72 
73  virtual int Tag() const { return _lab.Tag(); }
74  virtual int Depth() const { return _lab.Depth(); }
75 
76  virtual DF_Label GetLabel() const { return _lab; }
77 
78  bool IsNull() const { return _lab.IsNull(); }
79 
80  bool IsComponent() const;
81 
82  operator SALOMEDSImpl_SComponent() const;
83 
84  operator bool () const { return !IsNull(); }
85 
86  SALOMEDSImpl_SObject* GetPersistentCopy() const;
87 
88  static std::string GetGUID(const std::string& theTypeOfAttribute);
89 
90 
91 };
92 #endif