diff options
author | rtk0c <[email protected]> | 2021-06-08 09:56:38 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-06-08 09:56:38 -0700 |
commit | 19d8aeb010ffc967bf82986b7586b161364ab82f (patch) | |
tree | 3915a0802e37dda4d1f60e035e2e881519e9a8ff /core/src/Model/Workflow/Workflow.hpp | |
parent | d7ee2efaca226fc478e3f0c78abdbe86a887f17a (diff) |
Fix includes
Diffstat (limited to 'core/src/Model/Workflow/Workflow.hpp')
-rw-r--r-- | core/src/Model/Workflow/Workflow.hpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/core/src/Model/Workflow/Workflow.hpp b/core/src/Model/Workflow/Workflow.hpp index 8b3db8a..e5e434a 100644 --- a/core/src/Model/Workflow/Workflow.hpp +++ b/core/src/Model/Workflow/Workflow.hpp @@ -6,14 +6,13 @@ #include "cplt_fwd.hpp" #include <imgui_node_editor.h> -#include <any> #include <cstddef> #include <cstdint> #include <filesystem> +#include <functional> #include <iosfwd> #include <limits> #include <memory> -#include <span> #include <string> #include <variant> #include <vector> @@ -272,8 +271,8 @@ public: void WriteTo(std::ostream& stream); private: - std::pair<WorkflowConnection&, size_t> AllocWorkflowConnection(); - std::pair<std::unique_ptr<WorkflowNode>&, size_t> AllocWorkflowStep(); + std::pair<WorkflowConnection&, uint32_t> AllocWorkflowConnection(); + std::pair<std::unique_ptr<WorkflowNode>&, uint32_t> AllocWorkflowStep(); }; class WorkflowAssetList final : public AssetListTyped<Workflow> |