Salome HOME
Disable sketch input fields unconditionally.
[modules/shaper.git] / src / ModelHighAPI / ModelHighAPI_Double.h
index 8dc3906d05ce1ef33aa97e52232dedf4543e5ed8..fdab71d1e54696c9033a92f680d5a09b8c49c692 100644 (file)
@@ -12,8 +12,6 @@
 
 #include <memory>
 #include <string>
-
-#include <boost/variant.hpp>
 //--------------------------------------------------------------------------------------
 class ModelAPI_AttributeDouble;
 //--------------------------------------------------------------------------------------
@@ -25,19 +23,26 @@ class ModelHighAPI_Double
 {
 public:
   /// Constructor for double
-  MODELHIGHAPI_EXPORT ModelHighAPI_Double(double theValue = 0.);
+  MODELHIGHAPI_EXPORT
+  ModelHighAPI_Double(double theValue = 0.);
   /// Constructor for std::string
-  MODELHIGHAPI_EXPORT ModelHighAPI_Double(const std::string & theValue);
+  MODELHIGHAPI_EXPORT
+  ModelHighAPI_Double(const std::string & theValue);
   /// Constructor for char *
-  MODELHIGHAPI_EXPORT ModelHighAPI_Double(const char * theValue);
+  MODELHIGHAPI_EXPORT
+  ModelHighAPI_Double(const char * theValue);
   /// Destructor
-  MODELHIGHAPI_EXPORT virtual ~ModelHighAPI_Double();
+  MODELHIGHAPI_EXPORT
+  virtual ~ModelHighAPI_Double();
 
   /// Fill attribute values
-  MODELHIGHAPI_EXPORT virtual void fillAttribute(std::shared_ptr<ModelAPI_AttributeDouble> & theAttribute) const;
+  MODELHIGHAPI_EXPORT
+  virtual void fillAttribute(const std::shared_ptr<ModelAPI_AttributeDouble> & theAttribute) const;
 
 private:
-  boost::variant<double, std::string> myValue;
+  enum VariantType { VT_DOUBLE, VT_STRING } myVariantType;
+  double myDouble;
+  std::string myString;
 };
 
 //--------------------------------------------------------------------------------------