diff options
author | rtk0c <[email protected]> | 2021-04-19 14:00:47 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-04-19 14:00:47 -0700 |
commit | 1e09caaa2980fe901453b4b90985967a51157887 (patch) | |
tree | df61974f9a5efa9a6732bd6d7b1ec1e6d1af182a /core/src/Model/Workflow/Value.cpp | |
parent | b00b306de1140cb7b759ed0f639e8210fd7dffa6 (diff) |
Split workflow into multiple files, fix unity build
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; +} |