diff options
author | rtk0c <[email protected]> | 2021-04-26 14:07:28 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-04-26 14:07:28 -0700 |
commit | b7d5b514e7bffd3149a99bc7f1424f8251876d85 (patch) | |
tree | 42f2867875c0b367fab2a6db7be395f8c777eb41 /core/src/Model/Workflow/Value_Main.cpp | |
parent | e7afe82857ac3ccc3e10b40cee60ea94cc59232b (diff) |
Serialization for workflow stuff
Diffstat (limited to 'core/src/Model/Workflow/Value_Main.cpp')
-rw-r--r-- | core/src/Model/Workflow/Value_Main.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/core/src/Model/Workflow/Value_Main.cpp b/core/src/Model/Workflow/Value_Main.cpp new file mode 100644 index 0000000..2e64987 --- /dev/null +++ b/core/src/Model/Workflow/Value_Main.cpp @@ -0,0 +1,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) { +} |