diff options
Diffstat (limited to 'src/AlsaDriver.hpp')
-rw-r--r-- | src/AlsaDriver.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/AlsaDriver.hpp b/src/AlsaDriver.hpp index 2af3553..a953b7b 100644 --- a/src/AlsaDriver.hpp +++ b/src/AlsaDriver.hpp @@ -29,6 +29,7 @@ #include <set> #include <string> +class ILog; class Patchage; class PatchagePort; @@ -37,7 +38,7 @@ class PatchagePort; class AlsaDriver : public Driver { public: - explicit AlsaDriver(Patchage* app); + explicit AlsaDriver(Patchage* app, ILog& log); AlsaDriver(const AlsaDriver&) = delete; AlsaDriver& operator=(const AlsaDriver&) = delete; @@ -88,6 +89,7 @@ private: snd_seq_addr_t addr); Patchage* _app; + ILog& _log; snd_seq_t* _seq; pthread_t _refresh_thread; |