Salome HOME
First stable version after merging with V3_2_2
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributeReal.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_AttributeReal.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24 #include "SALOMEDSImpl_AttributeReal.hxx"
25
26 using namespace std;
27
28 IMPLEMENT_STANDARD_HANDLE( SALOMEDSImpl_AttributeReal, SALOMEDSImpl_GenericAttribute )
29 IMPLEMENT_STANDARD_RTTIEXT( SALOMEDSImpl_AttributeReal, SALOMEDSImpl_GenericAttribute )
30
31 //=======================================================================
32 //function : GetID
33 //purpose  :
34 //=======================================================================
35 const Standard_GUID& SALOMEDSImpl_AttributeReal::GetID ()
36 {
37   static Standard_GUID realID ("1D1992F0-56F4-46b4-8065-CDEA68061CAB");
38   return realID;
39 }   
40
41 Handle(SALOMEDSImpl_AttributeReal) SALOMEDSImpl_AttributeReal::Set (const TDF_Label& L, const Standard_Real Val) 
42 {
43   Handle(SALOMEDSImpl_AttributeReal) A;
44   if (!L.FindAttribute(SALOMEDSImpl_AttributeReal::GetID(), A)) {
45     A = new  SALOMEDSImpl_AttributeReal(); 
46     L.AddAttribute(A);
47   }
48
49   A->SetValue(Val); 
50   return A;
51 }
52
53 //=======================================================================
54 //function : SetValue
55 //purpose  :
56 //=======================================================================
57 void SALOMEDSImpl_AttributeReal::SetValue(const Standard_Real v)
58 {
59   CheckLocked();
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_AttributeReal::ID () const 
74
75   return GetID(); 
76
77
78 //=======================================================================
79 //function : NewEmpty
80 //purpose  : 
81 //=======================================================================
82 Handle(TDF_Attribute) SALOMEDSImpl_AttributeReal::NewEmpty () const
83 {  
84   return new SALOMEDSImpl_AttributeReal(); 
85 }
86
87 //=======================================================================
88 //function : Restore
89 //purpose  : 
90 //=======================================================================
91 void SALOMEDSImpl_AttributeReal::Restore(const Handle(TDF_Attribute)& with) 
92 {
93   myValue = Handle(SALOMEDSImpl_AttributeReal)::DownCast (with)->Value ();
94 }
95
96 //=======================================================================
97 //function : Paste
98 //purpose  : 
99 //=======================================================================
100 void SALOMEDSImpl_AttributeReal::Paste (const Handle(TDF_Attribute)& into,
101                                         const Handle(TDF_RelocationTable)& RT) const
102 {
103   Handle(SALOMEDSImpl_AttributeReal)::DownCast (into)->SetValue(myValue);
104 }