//
#include "SALOMEDSImpl_ScalarVariable.hxx"
#include "SALOMEDSImpl_GenericVariable.hxx"
+#include "Basics_Utils.hxx"
#include <iostream>
#include <cstdlib>
#include <cstdio>
+#define OLDSTUDY_COMPATIBILITY
+
//============================================================================
/*! Function : SALOMEDSImpl_ScalarVariable
* Purpose :
*/
//============================================================================
std::string SALOMEDSImpl_ScalarVariable::Save() const{
+ Kernel_Utils::Localizer loc;
+
char buffer[255];
switch(Type())
{
//============================================================================
std::string SALOMEDSImpl_ScalarVariable::SaveToScript() const
{
+ Kernel_Utils::Localizer loc;
+
char buffer[255];
switch(Type())
{
}
case SALOMEDSImpl_GenericVariable::BOOLEAN_VAR:
{
- if((bool)myValue)
- sprintf(buffer, "%s", "True");
- else
- sprintf(buffer, "%s", "False");
+ sprintf(buffer, "%s", ((bool)myValue) ? "True" : "False");
break;
}
case SALOMEDSImpl_GenericVariable::STRING_VAR:
//============================================================================
void SALOMEDSImpl_ScalarVariable::Load(const std::string& theStrValue)
{
- double aValue = atof(theStrValue.c_str());
- setValue(aValue);
+ Kernel_Utils::Localizer loc;
+
+ if ( Type() == SALOMEDSImpl_GenericVariable::STRING_VAR ) {
+ setStringValue( theStrValue );
+ }
+ else {
+ std::string strCopy = theStrValue;
+#ifdef OLDSTUDY_COMPATIBILITY
+ int dotpos = strCopy.find(',');
+ if (dotpos != std::string::npos)
+ strCopy.replace(dotpos, 1, ".");
+#endif // OLDSTUDY_COMPATIBILITY
+ double aValue = atof(strCopy.c_str());
+ setValue(aValue);
+ }
}