aboutsummaryrefslogtreecommitdiff
path: root/core/src/Model/Workflow/Evaluation.hpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2021-05-06 21:56:40 -0700
committerrtk0c <[email protected]>2021-05-06 21:56:40 -0700
commit1fd1e4b5f2418e3ac2909658993bfedb615537ec (patch)
tree6de080d2273890f8a74d7fcd3572bb44f44ac545 /core/src/Model/Workflow/Evaluation.hpp
parent538e804fc9beb83e711a210ffbb6badc15f285d5 (diff)
Change brace style to on new line, add initial deliveries view when an order entry is selected
Diffstat (limited to 'core/src/Model/Workflow/Evaluation.hpp')
-rw-r--r--core/src/Model/Workflow/Evaluation.hpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/core/src/Model/Workflow/Evaluation.hpp b/core/src/Model/Workflow/Evaluation.hpp
index d068c45..4d78872 100644
--- a/core/src/Model/Workflow/Evaluation.hpp
+++ b/core/src/Model/Workflow/Evaluation.hpp
@@ -7,14 +7,17 @@
#include <string>
#include <vector>
-class WorkflowEvaluationError {
+class WorkflowEvaluationError
+{
public:
- enum MessageType : int16_t {
+ enum MessageType : int16_t
+ {
Error,
Warning,
};
- enum PinType : int16_t {
+ enum PinType : int16_t
+ {
NoPin,
InputPin,
OutputPin,
@@ -34,7 +37,8 @@ public:
std::string Format() const;
};
-class WorkflowEvaluationContext {
+class WorkflowEvaluationContext
+{
private:
struct RuntimeNode;
struct RuntimeConnection;