Salome HOME
PR: merge from branch BR_auto_V310 tag mergefrom_OCC_development_for_3_2_0a2_10mar06
[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/
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 IMPLEMENT_STANDARD_HANDLE( SALOMEDSImpl_AttributeExpandable, SALOMEDSImpl_GenericAttribute )
31 IMPLEMENT_STANDARD_RTTIEXT( SALOMEDSImpl_AttributeExpandable, SALOMEDSImpl_GenericAttribute )
32
33 //=======================================================================
34 //function : GetID
35 //purpose  : 
36 //=======================================================================
37 const Standard_GUID& SALOMEDSImpl_AttributeExpandable::GetID () 
38 {
39   static Standard_GUID SALOMEDSImpl_AttributeExpandableID ("12837185-8F52-11d6-A8A3-0001021E8C7F");
40   return SALOMEDSImpl_AttributeExpandableID;
41 }
42
43
44
45 //=======================================================================
46 //function : Set
47 //purpose  : 
48 //=======================================================================
49 Handle(SALOMEDSImpl_AttributeExpandable) SALOMEDSImpl_AttributeExpandable::Set (const TDF_Label& L,
50                                                                                 const Standard_Integer value) 
51 {
52   Handle(SALOMEDSImpl_AttributeExpandable) A;
53   if (!L.FindAttribute(SALOMEDSImpl_AttributeExpandable::GetID(),A)) {
54     A = new  SALOMEDSImpl_AttributeExpandable(); 
55     L.AddAttribute(A);
56   }
57   
58   A->SetExpandable(value); 
59   return A;
60 }
61
62
63 //=======================================================================
64 //function : constructor
65 //purpose  : 
66 //=======================================================================
67 SALOMEDSImpl_AttributeExpandable::SALOMEDSImpl_AttributeExpandable()
68 :SALOMEDSImpl_GenericAttribute("AttributeExpandable")
69 {
70   myValue = 0;
71 }
72
73 //=======================================================================
74 //function : SetExpandable
75 //purpose  :
76 //=======================================================================
77 void SALOMEDSImpl_AttributeExpandable::SetExpandable(const Standard_Integer theValue)
78 {
79   CheckLocked();
80
81   Backup();
82
83   (theValue!=0)?myValue=1:myValue=0;
84 }
85
86 //=======================================================================
87 //function : ID
88 //purpose  : 
89 //=======================================================================
90
91 const Standard_GUID& SALOMEDSImpl_AttributeExpandable::ID () const { return GetID(); }
92
93
94 //=======================================================================
95 //function : NewEmpty
96 //purpose  : 
97 //=======================================================================
98
99 Handle(TDF_Attribute) SALOMEDSImpl_AttributeExpandable::NewEmpty () const
100 {  
101   return new SALOMEDSImpl_AttributeExpandable(); 
102 }
103
104 //=======================================================================
105 //function : Restore
106 //purpose  : 
107 //=======================================================================
108
109 void SALOMEDSImpl_AttributeExpandable::Restore(const Handle(TDF_Attribute)& with) 
110 {
111   myValue = Handle(SALOMEDSImpl_AttributeExpandable)::DownCast (with)->IsExpandable ();
112 }
113
114 //=======================================================================
115 //function : Paste
116 //purpose  : 
117 //=======================================================================
118
119 void SALOMEDSImpl_AttributeExpandable::Paste (const Handle(TDF_Attribute)& into,
120                                     const Handle(TDF_RelocationTable)& RT) const
121 {
122   Handle(SALOMEDSImpl_AttributeExpandable)::DownCast (into)->SetExpandable (myValue);
123 }
124