Salome HOME
Remove warnings
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_ScalarVariable.hxx
1 // Copyright (C) 2008  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_ScalarVariable.hxx
21 //  Author : Roman NIKOLAEV, Open CASCADE S.A.S.
22 //  Module : SALOME
23
24 #ifndef _SALOMEDSImpl_ScalarVariable_HeaderFile
25 #define _SALOMEDSImpl_ScalarVariable_HeaderFile
26
27 #include "SALOMEDSImpl_Defines.hxx"
28 #include "SALOMEDSImpl_GenericVariable.hxx"
29
30 class SALOMEDSIMPL_EXPORT SALOMEDSImpl_ScalarVariable : 
31   public SALOMEDSImpl_GenericVariable 
32 {
33 public:
34   SALOMEDSImpl_ScalarVariable(SALOMEDSImpl_GenericVariable::VariableTypes theType,
35                               const std::string& theName);
36   ~SALOMEDSImpl_ScalarVariable();
37   
38   bool setValue(const double theValue);
39   double getValue() const;
40
41   virtual std::string Save() const;
42   virtual std::string SaveToScript() const;
43   virtual std::string SaveType() const;
44
45   virtual void Load(const std::string& theStrValue);
46
47 private:
48   double myValue;
49 };
50
51
52 #endif //_SALOMEDSImpl_ScalarVariable_HeaderFile