Salome HOME
updated copyright message
[modules/shaper.git] / src / ModelHighAPI / ModelHighAPI_Integer.h
index 111e8fbf459164db412396e86743bbdb0f446e22..9bf1f3511259f122fcb2f292320915a7121b8971 100644 (file)
@@ -1,9 +1,21 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
-// Name   : ModelHighAPI_Integer.h
-// Purpose:
+// Copyright (C) 2014-2023  CEA, EDF
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
-// History:
-// 29/03/16 - Sergey POKHODENKO - Creation of the file
 
 #ifndef SRC_MODELHIGHAPI_MODELHIGHAPI_INTEGER_H_
 #define SRC_MODELHIGHAPI_MODELHIGHAPI_INTEGER_H_
@@ -28,10 +40,10 @@ public:
   ModelHighAPI_Integer(int theValue = 0);
   /// Constructor for std::string
   MODELHIGHAPI_EXPORT
-  ModelHighAPI_Integer(const std::string & theValue);
+  ModelHighAPI_Integer(const std::wstring & theValue);
   /// Constructor for char *
   MODELHIGHAPI_EXPORT
-  ModelHighAPI_Integer(const char * theValue);
+  ModelHighAPI_Integer(const wchar_t * theValue);
   /// Destructor
   MODELHIGHAPI_EXPORT
   virtual ~ModelHighAPI_Integer();
@@ -43,10 +55,13 @@ public:
   /// Returns a value (must be used only for attributes which support no text)
   MODELHIGHAPI_EXPORT virtual int intValue() const;
 
+  /// Returns a string representation of the value
+  MODELHIGHAPI_EXPORT virtual std::wstring string() const;
+
 private:
   enum VariantType { VT_INT, VT_STRING } myVariantType;
   int myInt;
-  std::string myString;
+  std::wstring myString;
 };
 
 //--------------------------------------------------------------------------------------