diff options
author | rtk0c <[email protected]> | 2022-11-27 12:04:31 -0800 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-11-27 12:04:31 -0800 |
commit | 182c8f8357739f905bbd721006480502435b6b43 (patch) | |
tree | 082613a474d863182e2ad8f2167f1643f26e67a3 /app/source/Cplt/Model/Workflow/Nodes/TextNodes.hpp | |
parent | b01ed99a1cd0c863c8709930658513c04dd70f61 (diff) |
Update brace style to match rest of my projectscplt-imgui
Diffstat (limited to 'app/source/Cplt/Model/Workflow/Nodes/TextNodes.hpp')
-rw-r--r-- | app/source/Cplt/Model/Workflow/Nodes/TextNodes.hpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/app/source/Cplt/Model/Workflow/Nodes/TextNodes.hpp b/app/source/Cplt/Model/Workflow/Nodes/TextNodes.hpp index 4689931..56eb19b 100644 --- a/app/source/Cplt/Model/Workflow/Nodes/TextNodes.hpp +++ b/app/source/Cplt/Model/Workflow/Nodes/TextNodes.hpp @@ -7,11 +7,9 @@ #include <variant> #include <vector> -class TextFormatterNode : public WorkflowNode -{ +class TextFormatterNode : public WorkflowNode { public: - enum ArgumentType - { + enum ArgumentType { NumericArgument, TextArgument, DateTimeArgument, @@ -20,8 +18,7 @@ public: private: class Impl; - struct Argument - { + struct Argument { ArgumentType Type; int PinIdx; }; |