diff options
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> |