Salome HOME
4b1a06fb2f830d72335c4ea17beda3a653c31993
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributeInteger.cxx
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D, 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_AttributeInteger.cxx
24 //  Author : Sergey RUIN
25 //  Module : SALOME
26 //
27 #include "SALOMEDSImpl_AttributeInteger.hxx"
28
29 #include <stdlib.h>
30
31 //=======================================================================
32 //function : GetID
33 //purpose  :
34 //=======================================================================
35 const std::string& SALOMEDSImpl_AttributeInteger::GetID ()
36 {
37   static std::string IntegerID ("8CC3E213-C9B4-47e4-8496-DD5E62E22018");
38   return IntegerID;
39 }   
40
41 SALOMEDSImpl_AttributeInteger* SALOMEDSImpl_AttributeInteger::Set (const DF_Label& L, int Val) 
42 {
43   SALOMEDSImpl_AttributeInteger* A = NULL;
44   if (!(A = (SALOMEDSImpl_AttributeInteger*)L.FindAttribute(SALOMEDSImpl_AttributeInteger::GetID()))) {
45     A = new  SALOMEDSImpl_AttributeInteger(); 
46     L.AddAttribute(A);
47   }
48
49   A->SetValue(Val); 
50   return A;
51 }
52
53 //=======================================================================
54 //function : Value
55 //purpose  :
56 //=======================================================================
57 int SALOMEDSImpl_AttributeInteger::Value() const
58 {
59     return myValue;
60 }
61
62 //=======================================================================
63 //function : SetValue
64 //purpose  :
65 //=======================================================================
66 void SALOMEDSImpl_AttributeInteger::SetValue(const int v)
67 {
68   if(myValue == v) return;
69
70   Backup();
71   myValue = v;
72
73   SetModifyFlag(); //SRN: Mark the study as being modified, so it could be saved 
74 }
75
76 //=======================================================================
77 //function : ID
78 //purpose  :
79 //=======================================================================
80 const std::string& SALOMEDSImpl_AttributeInteger::ID () const { return GetID(); }
81
82
83 //=======================================================================
84 //function : NewEmpty
85 //purpose  :
86 //=======================================================================
87 DF_Attribute* SALOMEDSImpl_AttributeInteger::NewEmpty () const
88 {
89   return new SALOMEDSImpl_AttributeInteger();
90 }
91
92 //=======================================================================
93 //function : Restore
94 //purpose  :
95 //=======================================================================
96 void SALOMEDSImpl_AttributeInteger::Restore(DF_Attribute* With)
97 {
98   myValue = dynamic_cast<SALOMEDSImpl_AttributeInteger*>(With)->Value();
99 }
100
101 //=======================================================================
102 //function : Paste
103 //purpose  :
104 //=======================================================================
105 void SALOMEDSImpl_AttributeInteger::Paste (DF_Attribute* Into)
106 {
107   dynamic_cast<SALOMEDSImpl_AttributeInteger*>(Into)->SetValue(myValue);
108 }             
109
110 //=======================================================================
111 //function : Save
112 //purpose  :
113 //=======================================================================
114 std::string SALOMEDSImpl_AttributeInteger::Save() 
115
116   char buffer[128]; 
117   sprintf(buffer, "%d", myValue);
118   return std::string(buffer); 
119 }
120
121 //=======================================================================
122 //function : Load
123 //purpose  :
124 //=======================================================================
125 void SALOMEDSImpl_AttributeInteger::Load(const std::string& theValue)
126 {
127   myValue = atoi(theValue.c_str());  
128 }