Salome HOME
merge from branch BR_For40_DSC tag mergeto_BR_Dev_For_4_0_16apr07
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributeOpened.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_AttributeOpened.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24
25 #include "SALOMEDSImpl_AttributeOpened.hxx"
26 #include <Standard_GUID.hxx>
27
28 using namespace std;
29
30 IMPLEMENT_STANDARD_HANDLE( SALOMEDSImpl_AttributeOpened, SALOMEDSImpl_GenericAttribute )
31 IMPLEMENT_STANDARD_RTTIEXT( SALOMEDSImpl_AttributeOpened, SALOMEDSImpl_GenericAttribute )
32
33 //=======================================================================
34 //function : GetID
35 //purpose  : 
36 //=======================================================================
37
38 const Standard_GUID& SALOMEDSImpl_AttributeOpened::GetID () 
39 {
40   static Standard_GUID SALOMEDSImpl_AttributeOpenedID ("12837186-8F52-11d6-A8A3-0001021E8C7F");
41   return SALOMEDSImpl_AttributeOpenedID;
42 }
43
44
45
46 //=======================================================================
47 //function : Set
48 //purpose  : 
49 //=======================================================================
50
51 Handle(SALOMEDSImpl_AttributeOpened) SALOMEDSImpl_AttributeOpened::Set (const TDF_Label& L,
52                                                                         const Standard_Integer value) 
53 {
54   Handle(SALOMEDSImpl_AttributeOpened) A;
55   if (!L.FindAttribute(SALOMEDSImpl_AttributeOpened::GetID(),A)) {
56     A = new  SALOMEDSImpl_AttributeOpened(); 
57     L.AddAttribute(A);
58   }
59   
60   A->SetOpened (value); 
61   return A;
62 }
63
64
65 //=======================================================================
66 //function : constructor
67 //purpose  : 
68 //=======================================================================
69 SALOMEDSImpl_AttributeOpened::SALOMEDSImpl_AttributeOpened()
70 :SALOMEDSImpl_GenericAttribute("AttributeOpened")
71 {
72   myValue = 0; 
73 }
74
75 //=======================================================================
76 //function : SetOpened
77 //purpose  :
78 //=======================================================================
79 void SALOMEDSImpl_AttributeOpened::SetOpened(const Standard_Integer theValue)
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_AttributeOpened::ID () const { return GetID(); }
92
93
94 //=======================================================================
95 //function : NewEmpty
96 //purpose  : 
97 //=======================================================================
98
99 Handle(TDF_Attribute) SALOMEDSImpl_AttributeOpened::NewEmpty () const
100 {  
101   return new SALOMEDSImpl_AttributeOpened(); 
102 }
103
104 //=======================================================================
105 //function : Restore
106 //purpose  : 
107 //=======================================================================
108
109 void SALOMEDSImpl_AttributeOpened::Restore(const Handle(TDF_Attribute)& with) 
110 {
111   myValue = Handle(SALOMEDSImpl_AttributeOpened)::DownCast (with)->IsOpened ();
112 }
113
114 //=======================================================================
115 //function : Paste
116 //purpose  : 
117 //=======================================================================
118
119 void SALOMEDSImpl_AttributeOpened::Paste (const Handle(TDF_Attribute)& into,
120                                           const Handle(TDF_RelocationTable)& RT) const
121 {
122   Handle(SALOMEDSImpl_AttributeOpened)::DownCast (into)->SetOpened (myValue);
123 }
124