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