Salome HOME
Copyright update 2022
[modules/shaper.git] / src / ModelHighAPI / ModelHighAPI_Integer.cpp
1 // Copyright (C) 2014-2022  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "ModelHighAPI_Integer.h"
21
22 #include <ModelAPI_AttributeInteger.h>
23
24 #include <sstream>
25 //--------------------------------------------------------------------------------------
26
27 //--------------------------------------------------------------------------------------
28 ModelHighAPI_Integer::ModelHighAPI_Integer(int theValue)
29 : myVariantType(VT_INT)
30 , myInt(theValue)
31 {
32 }
33
34 ModelHighAPI_Integer::ModelHighAPI_Integer(const std::wstring & theValue)
35 : myVariantType(VT_STRING)
36 , myString(theValue)
37 {
38 }
39
40 ModelHighAPI_Integer::ModelHighAPI_Integer(const wchar_t * theValue)
41 : myVariantType(VT_STRING)
42 , myString(theValue)
43 {
44 }
45
46 ModelHighAPI_Integer::~ModelHighAPI_Integer()
47 {
48 }
49
50 //--------------------------------------------------------------------------------------
51 void ModelHighAPI_Integer::fillAttribute(
52     const std::shared_ptr<ModelAPI_AttributeInteger> & theAttribute) const
53 {
54   switch(myVariantType) {
55     case VT_INT: theAttribute->setValue(myInt); return;
56     case VT_STRING: theAttribute->setText(myString); return;
57   }
58 }
59
60 int ModelHighAPI_Integer::intValue() const
61 {
62   // needed for array of integer, which supports no text
63   return myInt;
64 }
65
66 std::wstring ModelHighAPI_Integer::string() const
67 {
68   if (myVariantType == VT_STRING)
69     return myString;
70
71   std::wostringstream anOut;
72   anOut << myInt;
73   return anOut.str();
74 }