aboutsummaryrefslogtreecommitdiff
path: root/core/src/Model/Workflow/Value.cpp
blob: 7e5aabf6a5da9f778c93a939fea8f7f062710aad (plain)
1
2
3
4
5
6
7
8
9
#include "Value.hpp"

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

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