Salome HOME
Use the prefix std:: instead of the directive using namespace std;
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_SComponent.cxx
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_SComponent.cxx
23 //  Author : Sergey RUIN
24 //  Module : SALOME
25 //
26 #include "SALOMEDSImpl_SComponent.hxx"
27 #include "SALOMEDSImpl_AttributeComment.hxx"
28 #include "SALOMEDSImpl_AttributeIOR.hxx" 
29
30 //============================================================================
31 /*! Function : Empty constructor
32  *  Purpose  : 
33  */
34 //============================================================================
35 SALOMEDSImpl_SComponent::SALOMEDSImpl_SComponent()
36 {
37 }
38
39 //============================================================================
40 /*! Function : Copy constructor
41  *  Purpose  : 
42  */
43 //============================================================================
44 SALOMEDSImpl_SComponent::SALOMEDSImpl_SComponent(const SALOMEDSImpl_SComponent& theSCO)
45 {
46   _lab   = theSCO._lab;
47   _value = theSCO._value;
48   _type  = theSCO._type;
49   _name  = theSCO._name;
50 }
51
52 //============================================================================
53 /*! Function : constructor
54  *  Purpose  : 
55  */
56 //============================================================================
57 SALOMEDSImpl_SComponent::SALOMEDSImpl_SComponent(const DF_Label& theLabel)
58   :SALOMEDSImpl_SObject(theLabel)
59 {
60 }
61   
62 //============================================================================
63 /*! Function : destructor
64  *  Purpose  : 
65  */
66 //============================================================================
67 SALOMEDSImpl_SComponent::~SALOMEDSImpl_SComponent()
68 {
69 }
70   
71   
72 //============================================================================
73 /*! Function : ComponentDataType
74  *  Purpose  : 
75  */
76 //============================================================================
77 std::string SALOMEDSImpl_SComponent::ComponentDataType()
78 {
79   std::string res = "";
80   SALOMEDSImpl_AttributeComment* type;
81   if ( (type = (SALOMEDSImpl_AttributeComment*)_lab.FindAttribute(SALOMEDSImpl_AttributeComment::GetID())) ) {
82     res = type->Value();
83   }
84
85   return res;
86 }
87   
88
89 //============================================================================
90 /*! Function : ComponentIOR
91  *  Purpose  : 
92  */
93 //============================================================================
94 bool SALOMEDSImpl_SComponent::ComponentIOR(std::string& IOR)
95 {
96   SALOMEDSImpl_AttributeIOR* ior;
97   if (!(ior = (SALOMEDSImpl_AttributeIOR*)_lab.FindAttribute(SALOMEDSImpl_AttributeIOR::GetID())) )
98       return false;
99   IOR = ior->Value();
100   return true;
101 }
102
103
104 //============================================================================
105 /*! Function : IsA
106  *  Purpose  : 
107  */
108 //============================================================================
109 bool SALOMEDSImpl_SComponent::IsA(const DF_Label& theLabel)
110 {
111   // scomponent must contain comment and belong to the 2th depth label
112   if ( theLabel.IsAttribute(SALOMEDSImpl_AttributeComment::GetID()) && theLabel.Depth() == 2) {
113     return true;
114   }
115   return false;
116 }
117
118 //============================================================================
119 /*! Function :  GetPersistentCopy
120  *  Purpose  : 
121  */
122 //============================================================================
123 SALOMEDSImpl_SComponent* SALOMEDSImpl_SComponent::GetPersistentCopy() const
124 {
125   SALOMEDSImpl_SComponent* sco = new SALOMEDSImpl_SComponent;
126   sco->_lab = _lab;
127   sco->_name = _name;
128   sco->_type = _type;
129   sco->_value = _value; 
130   return sco;
131 }