X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelHighAPI%2FModelHighAPI_Double.cpp;h=72667c3ec727f5abdcf32d8556d0bce5943bbc20;hb=e675b9eb8df755fff9763560ddf36d5bfeb6fe35;hp=91cbaac32914e30e1e68db9c6f0f18bd3bd0158c;hpb=b1bf4bec5673c87a8e04882d6708bdf98123647a;p=modules%2Fshaper.git diff --git a/src/ModelHighAPI/ModelHighAPI_Double.cpp b/src/ModelHighAPI/ModelHighAPI_Double.cpp index 91cbaac32..72667c3ec 100644 --- a/src/ModelHighAPI/ModelHighAPI_Double.cpp +++ b/src/ModelHighAPI/ModelHighAPI_Double.cpp @@ -1,10 +1,23 @@ -// Name : ModelHighAPI_Double.cpp -// 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 -//-------------------------------------------------------------------------------------- #include "ModelHighAPI_Double.h" #include @@ -12,17 +25,20 @@ //-------------------------------------------------------------------------------------- ModelHighAPI_Double::ModelHighAPI_Double(double theValue) -: myValue(theValue) +: myVariantType(VT_DOUBLE) +, myDouble(theValue) { } ModelHighAPI_Double::ModelHighAPI_Double(const std::string & theValue) -: myValue(theValue) +: myVariantType(VT_STRING) +, myString(theValue) { } ModelHighAPI_Double::ModelHighAPI_Double(const char * theValue) -: myValue(theValue) +: myVariantType(VT_STRING) +, myString(theValue) { } @@ -31,19 +47,11 @@ ModelHighAPI_Double::~ModelHighAPI_Double() } //-------------------------------------------------------------------------------------- -struct fill_visitor : boost::static_visitor -{ - mutable std::shared_ptr myAttribute; - - fill_visitor(const std::shared_ptr & theAttribute) - : myAttribute(theAttribute) {} - - void operator()(double theValue) const { myAttribute->setValue(theValue); } - void operator()(const std::string & theValue) const { myAttribute->setText(theValue); } -}; - void ModelHighAPI_Double::fillAttribute( const std::shared_ptr & theAttribute) const { - boost::apply_visitor(fill_visitor(theAttribute), myValue); + switch(myVariantType) { + case VT_DOUBLE: theAttribute->setValue(myDouble); return; + case VT_STRING: theAttribute->setText(myString); return; + } }