mirror of
https://github.com/johndoe6345789/SDL3CPlusPlus.git
synced 2026-04-26 22:54:59 +00:00
ROADMAP.md
This commit is contained in:
@@ -297,13 +297,13 @@ set(WORKFLOW_SOURCES
|
||||
src/services/impl/workflow_config_migration_step.cpp
|
||||
src/services/impl/workflow_config_schema_step.cpp
|
||||
src/services/impl/workflow_default_step_registrar.cpp
|
||||
src/services/impl/workflow_list_filter_equals_step.cpp
|
||||
src/services/impl/workflow_list_map_add_step.cpp
|
||||
src/services/impl/workflow_list_reduce_sum_step.cpp
|
||||
src/services/impl/workflow_number_add_step.cpp
|
||||
src/services/impl/workflow_generic_steps/workflow_list_filter_equals_step.cpp
|
||||
src/services/impl/workflow_generic_steps/workflow_list_map_add_step.cpp
|
||||
src/services/impl/workflow_generic_steps/workflow_list_reduce_sum_step.cpp
|
||||
src/services/impl/workflow_generic_steps/workflow_number_add_step.cpp
|
||||
src/services/impl/workflow_runtime_config_step.cpp
|
||||
src/services/impl/workflow_value_copy_step.cpp
|
||||
src/services/impl/workflow_value_default_step.cpp
|
||||
src/services/impl/workflow_generic_steps/workflow_value_copy_step.cpp
|
||||
src/services/impl/workflow_generic_steps/workflow_value_default_step.cpp
|
||||
)
|
||||
|
||||
set(FRAME_WORKFLOW_SOURCES
|
||||
|
||||
@@ -8,16 +8,16 @@
|
||||
#include "workflow_frame_physics_step.hpp"
|
||||
#include "workflow_frame_render_step.hpp"
|
||||
#include "workflow_frame_scene_step.hpp"
|
||||
#include "workflow_list_filter_equals_step.hpp"
|
||||
#include "workflow_list_map_add_step.hpp"
|
||||
#include "workflow_list_reduce_sum_step.hpp"
|
||||
#include "workflow_number_add_step.hpp"
|
||||
#include "workflow_generic_steps/workflow_list_filter_equals_step.hpp"
|
||||
#include "workflow_generic_steps/workflow_list_map_add_step.hpp"
|
||||
#include "workflow_generic_steps/workflow_list_reduce_sum_step.hpp"
|
||||
#include "workflow_generic_steps/workflow_number_add_step.hpp"
|
||||
#include "workflow_soundboard_audio_step.hpp"
|
||||
#include "workflow_soundboard_catalog_scan_step.hpp"
|
||||
#include "workflow_soundboard_gui_step.hpp"
|
||||
#include "workflow_step_registry.hpp"
|
||||
#include "workflow_value_copy_step.hpp"
|
||||
#include "workflow_value_default_step.hpp"
|
||||
#include "workflow_generic_steps/workflow_value_copy_step.hpp"
|
||||
#include "workflow_generic_steps/workflow_value_default_step.hpp"
|
||||
#include "workflow_validation_checkpoint_step.hpp"
|
||||
|
||||
#include <stdexcept>
|
||||
|
||||
@@ -4,12 +4,12 @@
|
||||
#include "workflow_config_schema_step.hpp"
|
||||
#include "workflow_config_version_step.hpp"
|
||||
#include "workflow_runtime_config_step.hpp"
|
||||
#include "workflow_list_filter_equals_step.hpp"
|
||||
#include "workflow_list_map_add_step.hpp"
|
||||
#include "workflow_list_reduce_sum_step.hpp"
|
||||
#include "workflow_number_add_step.hpp"
|
||||
#include "workflow_value_copy_step.hpp"
|
||||
#include "workflow_value_default_step.hpp"
|
||||
#include "workflow_generic_steps/workflow_list_filter_equals_step.hpp"
|
||||
#include "workflow_generic_steps/workflow_list_map_add_step.hpp"
|
||||
#include "workflow_generic_steps/workflow_list_reduce_sum_step.hpp"
|
||||
#include "workflow_generic_steps/workflow_number_add_step.hpp"
|
||||
#include "workflow_generic_steps/workflow_value_copy_step.hpp"
|
||||
#include "workflow_generic_steps/workflow_value_default_step.hpp"
|
||||
|
||||
#include <stdexcept>
|
||||
#include <unordered_set>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#include "workflow_list_filter_equals_step.hpp"
|
||||
#include "workflow_step_io_resolver.hpp"
|
||||
#include "../workflow_step_io_resolver.hpp"
|
||||
|
||||
#include <stdexcept>
|
||||
#include <string>
|
||||
@@ -1,7 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "../interfaces/i_logger.hpp"
|
||||
#include "../interfaces/i_workflow_step.hpp"
|
||||
#include "../../interfaces/i_logger.hpp"
|
||||
#include "../../interfaces/i_workflow_step.hpp"
|
||||
|
||||
#include <memory>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#include "workflow_list_map_add_step.hpp"
|
||||
#include "workflow_step_io_resolver.hpp"
|
||||
#include "../workflow_step_io_resolver.hpp"
|
||||
|
||||
#include <stdexcept>
|
||||
#include <utility>
|
||||
@@ -1,7 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "../interfaces/i_logger.hpp"
|
||||
#include "../interfaces/i_workflow_step.hpp"
|
||||
#include "../../interfaces/i_logger.hpp"
|
||||
#include "../../interfaces/i_workflow_step.hpp"
|
||||
|
||||
#include <memory>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#include "workflow_list_reduce_sum_step.hpp"
|
||||
#include "workflow_step_io_resolver.hpp"
|
||||
#include "../workflow_step_io_resolver.hpp"
|
||||
|
||||
#include <stdexcept>
|
||||
#include <utility>
|
||||
@@ -1,7 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "../interfaces/i_logger.hpp"
|
||||
#include "../interfaces/i_workflow_step.hpp"
|
||||
#include "../../interfaces/i_logger.hpp"
|
||||
#include "../../interfaces/i_workflow_step.hpp"
|
||||
|
||||
#include <memory>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#include "workflow_number_add_step.hpp"
|
||||
#include "workflow_step_io_resolver.hpp"
|
||||
#include "../workflow_step_io_resolver.hpp"
|
||||
|
||||
#include <stdexcept>
|
||||
#include <utility>
|
||||
@@ -1,7 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "../interfaces/i_logger.hpp"
|
||||
#include "../interfaces/i_workflow_step.hpp"
|
||||
#include "../../interfaces/i_logger.hpp"
|
||||
#include "../../interfaces/i_workflow_step.hpp"
|
||||
|
||||
#include <memory>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#include "workflow_value_copy_step.hpp"
|
||||
#include "workflow_step_io_resolver.hpp"
|
||||
#include "../workflow_step_io_resolver.hpp"
|
||||
|
||||
#include <stdexcept>
|
||||
#include <utility>
|
||||
@@ -1,7 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "../interfaces/i_logger.hpp"
|
||||
#include "../interfaces/i_workflow_step.hpp"
|
||||
#include "../../interfaces/i_logger.hpp"
|
||||
#include "../../interfaces/i_workflow_step.hpp"
|
||||
|
||||
#include <memory>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#include "workflow_value_default_step.hpp"
|
||||
#include "workflow_step_io_resolver.hpp"
|
||||
#include "../workflow_step_io_resolver.hpp"
|
||||
|
||||
#include <stdexcept>
|
||||
#include <utility>
|
||||
@@ -1,7 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "../interfaces/i_logger.hpp"
|
||||
#include "../interfaces/i_workflow_step.hpp"
|
||||
#include "../../interfaces/i_logger.hpp"
|
||||
#include "../../interfaces/i_workflow_step.hpp"
|
||||
|
||||
#include <memory>
|
||||
|
||||
Reference in New Issue
Block a user