Added Getters for data-types in Value

This commit is contained in:
Leonetienne
2021-06-02 15:58:14 +02:00
parent ec2e7a06ff
commit c412e879a1
12 changed files with 110 additions and 7 deletions

View File

@@ -34,6 +34,11 @@ void ListValue::AddValue(const Value* value)
return;
}
const std::vector<Value*>& ListValue::GetValue() const
{
return value;
}
std::string ListValue::GetAsOsString() const
{
std::stringstream ss;