Salome HOME
Added @BOOST_CPPFLAGS@
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributeExpandable.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 //  File   : SALOMEDSImpl_AttributeExpandable.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24 #include "SALOMEDSImpl_AttributeExpandable.hxx"
25
26 #ifndef WNT
27 using namespace std;
28 #endif
29
30 //=======================================================================
31 //function : GetID
32 //purpose  : 
33 //=======================================================================
34 const std::string& SALOMEDSImpl_AttributeExpandable::GetID () 
35 {
36   static std::string SALOMEDSImpl_AttributeExpandableID ("12837185-8F52-11d6-A8A3-0001021E8C7F");
37   return SALOMEDSImpl_AttributeExpandableID;
38 }
39
40
41
42 //=======================================================================
43 //function : Set
44 //purpose  : 
45 //=======================================================================
46 SALOMEDSImpl_AttributeExpandable* SALOMEDSImpl_AttributeExpandable::Set (const DF_Label& L,
47                                                                         const int value) 
48 {
49   SALOMEDSImpl_AttributeExpandable* A = NULL;
50   if (!(A=(SALOMEDSImpl_AttributeExpandable*)L.FindAttribute(SALOMEDSImpl_AttributeExpandable::GetID()))) {
51     A = new  SALOMEDSImpl_AttributeExpandable(); 
52     L.AddAttribute(A);
53   }
54   
55   A->SetExpandable(value); 
56   return A;
57 }
58
59
60 //=======================================================================
61 //function : constructor
62 //purpose  : 
63 //=======================================================================
64 SALOMEDSImpl_AttributeExpandable::SALOMEDSImpl_AttributeExpandable()
65 :SALOMEDSImpl_GenericAttribute("AttributeExpandable")
66 {
67   myValue = 1;
68 }
69
70 //=======================================================================
71 //function : SetExpandable
72 //purpose  :
73 //=======================================================================
74 void SALOMEDSImpl_AttributeExpandable::SetExpandable(const int theValue)
75 {
76   CheckLocked();
77
78   Backup();
79
80   (theValue!=0)?myValue=1:myValue=0;
81 }
82
83 //=======================================================================
84 //function : ID
85 //purpose  : 
86 //=======================================================================
87
88 const std::string& SALOMEDSImpl_AttributeExpandable::ID () const { return GetID(); }
89
90
91 //=======================================================================
92 //function : NewEmpty
93 //purpose  : 
94 //=======================================================================
95
96 DF_Attribute* SALOMEDSImpl_AttributeExpandable::NewEmpty () const
97 {  
98   return new SALOMEDSImpl_AttributeExpandable(); 
99 }
100
101 //=======================================================================
102 //function : Restore
103 //purpose  : 
104 //=======================================================================
105
106 void SALOMEDSImpl_AttributeExpandable::Restore(DF_Attribute* with) 
107 {
108   myValue = dynamic_cast<SALOMEDSImpl_AttributeExpandable*>(with)->IsExpandable ();
109 }
110
111 //=======================================================================
112 //function : Paste
113 //purpose  : 
114 //=======================================================================
115
116 void SALOMEDSImpl_AttributeExpandable::Paste (DF_Attribute* into)
117 {
118   dynamic_cast<SALOMEDSImpl_AttributeExpandable*>(into)->SetExpandable (myValue);
119 }
120