Version: 9.16.0
SALOMEDSImpl_SObject.hxx
Go to the documentation of this file.
1// Copyright (C) 2007-2026 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
31
32#include "DF_Label.hxx"
33#include "DF_Attribute.hxx"
34#include <string>
35#include <vector>
36
39
41{
42protected:
44 std::string _name;
45 std::string _value;
46 std::string _type;
47
48public:
49
51 SALOMEDSImpl_SObject(const DF_Label& theLabel);
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
char bool
Definition: CalciumC.c:38
#define SALOMEDSIMPL_EXPORT
Definition: SALOMEDSImpl_Defines.hxx:34
Definition: DF_Attribute.hxx:30
Definition: DF_Label.hxx:65
int Depth() const
Definition: DF_Label.cxx:281
int Tag() const
Definition: DF_Label.cxx:124
bool IsNull() const
Definition: DF_Label.cxx:216
Definition: SALOMEDSImpl_SComponent.hxx:44
Definition: SALOMEDSImpl_SObject.hxx:41
virtual void Name(const std::string &theName)
Definition: SALOMEDSImpl_SObject.hxx:64
virtual int Depth() const
Definition: SALOMEDSImpl_SObject.hxx:73
DF_Label _lab
Definition: SALOMEDSImpl_SObject.hxx:43
std::string _name
Definition: SALOMEDSImpl_SObject.hxx:44
bool IsNull() const
Definition: SALOMEDSImpl_SObject.hxx:77
virtual std::string Name() const
Definition: SALOMEDSImpl_SObject.hxx:63
virtual int Tag() const
Definition: SALOMEDSImpl_SObject.hxx:72
virtual DF_Label GetLabel() const
Definition: SALOMEDSImpl_SObject.hxx:75
std::string _value
Definition: SALOMEDSImpl_SObject.hxx:45
std::string _type
Definition: SALOMEDSImpl_SObject.hxx:46
Definition: SALOMEDSImpl_Study.hxx:59
string name
Definition: pythfilter.py:56