Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[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 #include <stdlib.h>
29
30
31 //=======================================================================
32 //function : GetID
33 //purpose  :
34 //=======================================================================
35 const std::string& SALOMEDSImpl_AttributeReal::GetID ()
36 {
37   static std::string realID ("1D1992F0-56F4-46b4-8065-CDEA68061CAB");
38   return realID;
39 }   
40
41 SALOMEDSImpl_AttributeReal* SALOMEDSImpl_AttributeReal::Set (const DF_Label& L, const double& Val) 
42 {
43   SALOMEDSImpl_AttributeReal* A = NULL;
44   if (!(A=(SALOMEDSImpl_AttributeReal*)L.FindAttribute(SALOMEDSImpl_AttributeReal::GetID()))) {
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 double& 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 std::string& SALOMEDSImpl_AttributeReal::ID () const 
74
75   return GetID(); 
76
77
78 //=======================================================================
79 //function : NewEmpty
80 //purpose  : 
81 //=======================================================================
82 DF_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(DF_Attribute* with) 
92 {
93   myValue = dynamic_cast<SALOMEDSImpl_AttributeReal*>(with)->Value ();
94 }
95
96 //=======================================================================
97 //function : Paste
98 //purpose  : 
99 //=======================================================================
100 void SALOMEDSImpl_AttributeReal::Paste (DF_Attribute* into)
101 {
102   dynamic_cast<SALOMEDSImpl_AttributeReal*>(into)->SetValue(myValue);
103 }
104
105 //=======================================================================
106 //function : Save
107 //purpose  :
108 //=======================================================================
109 string SALOMEDSImpl_AttributeReal::Save() 
110
111   char buffer[255]; 
112   sprintf(buffer, "%.64e", myValue);
113   return string(buffer); 
114 }
115
116 //=======================================================================
117 //function : Load
118 //purpose  :
119 //=======================================================================
120 void SALOMEDSImpl_AttributeReal::Load(const string& theValue)
121 {
122   myValue = atof(theValue.c_str());  
123 }