66 lines
1.1 KiB
C++
66 lines
1.1 KiB
C++
#include "StringValue.h"
|
|
#include "HazelnuppException.h"
|
|
#include <sstream>
|
|
|
|
StringValue::StringValue(const std::string& value)
|
|
:
|
|
Value(DATA_TYPE::STRING),
|
|
value { value }
|
|
{
|
|
return;
|
|
}
|
|
|
|
Value* StringValue::Deepcopy() const
|
|
{
|
|
return new StringValue(value);
|
|
}
|
|
|
|
std::string StringValue::GetAsOsString() const
|
|
{
|
|
std::stringstream ss;
|
|
ss << "StringValue: " << value;
|
|
return ss.str();
|
|
}
|
|
|
|
const std::string& StringValue::GetValue() const
|
|
{
|
|
return value;
|
|
}
|
|
|
|
StringValue::operator std::string() const
|
|
{
|
|
return value;
|
|
}
|
|
|
|
|
|
|
|
long long int StringValue::GetInt64() const
|
|
{
|
|
throw HazelnuppValueNotConvertibleException();
|
|
}
|
|
|
|
int StringValue::GetInt32() const
|
|
{
|
|
throw HazelnuppValueNotConvertibleException();
|
|
}
|
|
|
|
long double StringValue::GetFloat64() const
|
|
{
|
|
throw HazelnuppValueNotConvertibleException();
|
|
}
|
|
|
|
double StringValue::GetFloat32() const
|
|
{
|
|
throw HazelnuppValueNotConvertibleException();
|
|
}
|
|
|
|
std::string StringValue::GetString() const
|
|
{
|
|
return value;
|
|
}
|
|
|
|
const std::vector<Value*>& StringValue::GetList() const
|
|
{
|
|
throw HazelnuppValueNotConvertibleException();
|
|
}
|