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