diff options
Diffstat (limited to 'core/src/Model/Workflow/Value.cpp')
-rw-r--r-- | core/src/Model/Workflow/Value.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/core/src/Model/Workflow/Value.cpp b/core/src/Model/Workflow/Value.cpp new file mode 100644 index 0000000..7e5aabf --- /dev/null +++ b/core/src/Model/Workflow/Value.cpp @@ -0,0 +1,9 @@ +#include "Value.hpp" + +BaseValue::BaseValue(Kind kind) + : mKind{ kind } { +} + +BaseValue::Kind BaseValue::GetKind() const { + return mKind; +} |