aboutsummaryrefslogtreecommitdiff
path: root/core/src/Model/Workflow/Value_Main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/Model/Workflow/Value_Main.cpp')
-rw-r--r--core/src/Model/Workflow/Value_Main.cpp19
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) {
+}