X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelHighAPI%2FModelHighAPI_Integer.h;h=7357f16b87163ef17a8da55d2f36eb428b951177;hb=b06cf1477fb1ee46d7ae260c234cac5d0000abf2;hp=7650b125644b7abc36923c9ac377f7f2a36ff42d;hpb=f853ca3afac47ae3b7e610af9d4eacef8f8739a5;p=modules%2Fshaper.git diff --git a/src/ModelHighAPI/ModelHighAPI_Integer.h b/src/ModelHighAPI/ModelHighAPI_Integer.h index 7650b1256..7357f16b8 100644 --- a/src/ModelHighAPI/ModelHighAPI_Integer.h +++ b/src/ModelHighAPI/ModelHighAPI_Integer.h @@ -1,8 +1,22 @@ -// Name : ModelHighAPI_Integer.h -// Purpose: +// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// +// 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_ @@ -12,8 +26,6 @@ #include #include - -#include //-------------------------------------------------------------------------------------- class ModelAPI_AttributeInteger; //-------------------------------------------------------------------------------------- @@ -26,7 +38,7 @@ class ModelHighAPI_Integer public: /// Constructor for int MODELHIGHAPI_EXPORT - ModelHighAPI_Integer(int theValue = 0.); + ModelHighAPI_Integer(int theValue = 0); /// Constructor for std::string MODELHIGHAPI_EXPORT ModelHighAPI_Integer(const std::string & theValue); @@ -41,8 +53,13 @@ public: MODELHIGHAPI_EXPORT virtual void fillAttribute(const std::shared_ptr & theAttribute) const; + /// Returns a value (must be used only for attributes which support no text) + MODELHIGHAPI_EXPORT virtual int intValue() const; + private: - boost::variant myValue; + enum VariantType { VT_INT, VT_STRING } myVariantType; + int myInt; + std::string myString; }; //--------------------------------------------------------------------------------------