add some app infrastructure services

This commit is contained in:
2026-06-07 15:49:43 -05:00
parent 1eb62ed186
commit 30b06e077c
10 changed files with 328 additions and 11 deletions

View File

@@ -5,6 +5,9 @@
#include <RtAudio.h>
#include "LoggerService.hpp"
#if defined(_WIN32)
#define AUDIO_API RtAudio::WINDOWS_WASAPI
#else
@@ -15,7 +18,7 @@ class AudioEngine {
public:
AudioEngine();
AudioEngine(LoggerService* logger);
~AudioEngine();
bool start();
@@ -36,4 +39,6 @@ private:
float phase_ = 0.0f;
LoggerService* logger_;
};