#include <iomanip>
#include <sstream>
+ScalarConverter::ScalarConverter()
+{
+}
+
+ScalarConverter::ScalarConverter(const ScalarConverter &other)
+{
+ *this = other;
+}
+
+ScalarConverter::~ScalarConverter()
+{
+}
+
+ScalarConverter &ScalarConverter::operator=(const ScalarConverter &other)
+{
+ if (this == &other)
+ return (*this);
+ return (*this);
+}
+
bool ScalarConverter::convert(const std::string &str)
{
double d_rep;
class ScalarConverter
{
+ private:
+ ScalarConverter();
+ ScalarConverter(const ScalarConverter &other);
+ ~ScalarConverter();
+
+ ScalarConverter &operator=(const ScalarConverter &other);
+
public:
static bool convert(const std::string &str);
};