aboutsummaryrefslogtreecommitdiff
path: root/core/src/Model/Workflow/Value_Main.cpp
blob: fdd2fd503bd1c2c5ceebd676dd266814e22da631 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "Value.hpp"

BaseValue::BaseValue(Kind kind)
	: mKind{ kind }
{
}

BaseValue::Kind BaseValue::GetKind() const
{
	return mKind;
}

bool BaseValue::SupportsConstant() const
{
	return false;
}

void BaseValue::ReadFrom(std::istream& stream)
{
}

void BaseValue::WriteTo(std::ostream& stream)
{
}