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