X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelHighAPI%2FModelHighAPI_Integer.cpp;h=fc17205d6608ca440596b79ac9b8f06c2635438e;hb=2054879244f3323c305222c79c57d2db6a487538;hp=68a612302d16437915b6b6980d867458c8cde503;hpb=f853ca3afac47ae3b7e610af9d4eacef8f8739a5;p=modules%2Fshaper.git diff --git a/src/ModelHighAPI/ModelHighAPI_Integer.cpp b/src/ModelHighAPI/ModelHighAPI_Integer.cpp index 68a612302..fc17205d6 100644 --- a/src/ModelHighAPI/ModelHighAPI_Integer.cpp +++ b/src/ModelHighAPI/ModelHighAPI_Integer.cpp @@ -1,5 +1,6 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D // Name : ModelHighAPI_Integer.cpp -// Purpose: +// Purpose: // // History: // 29/03/16 - Sergey POKHODENKO - Creation of the file @@ -12,17 +13,20 @@ //-------------------------------------------------------------------------------------- ModelHighAPI_Integer::ModelHighAPI_Integer(int theValue) -: myValue(theValue) +: myVariantType(VT_INT) +, myInt(theValue) { } ModelHighAPI_Integer::ModelHighAPI_Integer(const std::string & theValue) -: myValue(theValue) +: myVariantType(VT_STRING) +, myString(theValue) { } ModelHighAPI_Integer::ModelHighAPI_Integer(const char * theValue) -: myValue(theValue) +: myVariantType(VT_STRING) +, myString(theValue) { } @@ -31,19 +35,17 @@ ModelHighAPI_Integer::~ModelHighAPI_Integer() } //-------------------------------------------------------------------------------------- -struct fill_visitor : boost::static_visitor -{ - mutable std::shared_ptr myAttribute; - - fill_visitor(const std::shared_ptr & theAttribute) - : myAttribute(theAttribute) {} - - void operator()(int theValue) const { myAttribute->setValue(theValue); } - void operator()(const std::string & theValue) const { myAttribute->setText(theValue); } -}; - void ModelHighAPI_Integer::fillAttribute( const std::shared_ptr & theAttribute) const { - boost::apply_visitor(fill_visitor(theAttribute), myValue); + switch(myVariantType) { + case VT_INT: theAttribute->setValue(myInt); return; + case VT_STRING: theAttribute->setText(myString); return; + } +} + +int ModelHighAPI_Integer::intValue() const +{ + // needed for array of integer, which supports no text + return myInt; }