Salome HOME
c95a4d3cb19eea857ac94dcfca3b2a464ae179f5
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributeInteger.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_AttributeInteger.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24 #include "SALOMEDSImpl_AttributeInteger.hxx"
25
26 #ifndef WNT
27 using namespace std;
28 #endif
29
30 IMPLEMENT_STANDARD_HANDLE( SALOMEDSImpl_AttributeInteger,  SALOMEDSImpl_GenericAttribute)
31 IMPLEMENT_STANDARD_RTTIEXT( SALOMEDSImpl_AttributeInteger, SALOMEDSImpl_GenericAttribute )
32
33
34 //=======================================================================
35 //function : GetID
36 //purpose  :
37 //=======================================================================
38 const Standard_GUID& SALOMEDSImpl_AttributeInteger::GetID ()
39 {
40   static Standard_GUID IntegerID ("8CC3E213-C9B4-47e4-8496-DD5E62E22018");
41   return IntegerID;
42 }   
43
44 Handle(SALOMEDSImpl_AttributeInteger) SALOMEDSImpl_AttributeInteger::Set (const TDF_Label& L, Standard_Integer Val) 
45 {
46   Handle(SALOMEDSImpl_AttributeInteger) A;
47   if (!L.FindAttribute(SALOMEDSImpl_AttributeInteger::GetID(), A)) {
48     A = new  SALOMEDSImpl_AttributeInteger(); 
49     L.AddAttribute(A);
50   }
51
52   A->SetValue(Val); 
53   return A;
54 }
55
56 //=======================================================================
57 //function : SetValue
58 //purpose  :
59 //=======================================================================
60 void SALOMEDSImpl_AttributeInteger::SetValue(const Standard_Integer v)
61 {
62   if(myValue == v) return;
63
64   Backup();
65   myValue = v;
66
67   SetModifyFlag(); //SRN: Mark the study as being modified, so it could be saved 
68 }
69
70 //=======================================================================
71 //function : ID
72 //purpose  :
73 //=======================================================================
74 const Standard_GUID& SALOMEDSImpl_AttributeInteger::ID () const { return GetID(); }
75
76
77 //=======================================================================
78 //function : NewEmpty
79 //purpose  :
80 //=======================================================================
81 Handle(TDF_Attribute) SALOMEDSImpl_AttributeInteger::NewEmpty () const
82 {
83   return new SALOMEDSImpl_AttributeInteger();
84 }
85
86 //=======================================================================
87 //function : Restore
88 //purpose  :
89 //=======================================================================
90 void SALOMEDSImpl_AttributeInteger::Restore(const Handle(TDF_Attribute)& With)
91 {
92   myValue = Handle(SALOMEDSImpl_AttributeInteger)::DownCast (With)->Value();
93 }
94
95 //=======================================================================
96 //function : Paste
97 //purpose  :
98 //=======================================================================
99 void SALOMEDSImpl_AttributeInteger::Paste (const Handle(TDF_Attribute)& Into,
100                                            const Handle(TDF_RelocationTable)& RT) const
101 {
102   Handle(SALOMEDSImpl_AttributeInteger)::DownCast(Into)->SetValue(myValue);
103 }