From 7062fe98bf795f48f59de60c28b0a2b1bcbcac05 Mon Sep 17 00:00:00 2001 From: johndoe6345789 Date: Fri, 9 Jan 2026 21:55:07 +0000 Subject: [PATCH] ROADMAP.md --- .../impl/workflow_frame_audio_step.hpp | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/services/impl/workflow_frame_audio_step.hpp diff --git a/src/services/impl/workflow_frame_audio_step.hpp b/src/services/impl/workflow_frame_audio_step.hpp new file mode 100644 index 0000000..c6e0f45 --- /dev/null +++ b/src/services/impl/workflow_frame_audio_step.hpp @@ -0,0 +1,24 @@ +#pragma once + +#include "../interfaces/i_workflow_step.hpp" +#include "../interfaces/i_logger.hpp" +#include "../interfaces/i_audio_service.hpp" + +#include + +namespace sdl3cpp::services::impl { + +class WorkflowFrameAudioStep final : public IWorkflowStep { +public: + WorkflowFrameAudioStep(std::shared_ptr audioService, + std::shared_ptr logger); + + std::string GetPluginId() const override; + void Execute(const WorkflowStepDefinition& step, WorkflowContext& context) override; + +private: + std::shared_ptr audioService_; + std::shared_ptr logger_; +}; + +} // namespace sdl3cpp::services::impl