diff options
author | rtk0c <[email protected]> | 2021-04-18 22:29:10 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-04-18 22:29:10 -0700 |
commit | b00b306de1140cb7b759ed0f639e8210fd7dffa6 (patch) | |
tree | 601a7d5d457cad99a565a55ff318f6af4be07bc5 /core/src/Model/WorkflowNodes.hpp | |
parent | b3dfa12eee1cbca6be7a155e9e506d5a080071e2 (diff) |
Initial work on evaluation
Diffstat (limited to 'core/src/Model/WorkflowNodes.hpp')
-rw-r--r-- | core/src/Model/WorkflowNodes.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/Model/WorkflowNodes.hpp b/core/src/Model/WorkflowNodes.hpp index e7d4bfc..677158c 100644 --- a/core/src/Model/WorkflowNodes.hpp +++ b/core/src/Model/WorkflowNodes.hpp @@ -39,7 +39,7 @@ public: // TODO }; -class FormatTextNode : public WorkflowNode { +class TextFormatterNode : public WorkflowNode { public: enum ArgumentType { NumericArgument, @@ -57,7 +57,7 @@ private: public: static BaseValue::Kind ArgumentTypeToValueKind(ArgumentType arg); static bool IsInstance(const WorkflowNode* node); - FormatTextNode(); + TextFormatterNode(); int GetElementCount() const; const Element& GetElement(int idx) const; |