aboutsummaryrefslogtreecommitdiff
path: root/core/src/Model/Workflow/Value_Main.cpp
blob: 2e649876fa22ef57baf5c670db33840df33e2ba3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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) {
}