diff options
Diffstat (limited to 'drumgizmo')
-rw-r--r-- | drumgizmo/enginefactory.cc | 1 | ||||
-rw-r--r-- | drumgizmo/enginefactory.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/drumgizmo/enginefactory.cc b/drumgizmo/enginefactory.cc index 121abdd..cb332ed 100644 --- a/drumgizmo/enginefactory.cc +++ b/drumgizmo/enginefactory.cc @@ -27,7 +27,6 @@ #include <iostream> #include "enginefactory.h" -#include "jackclient.h" EngineFactory::EngineFactory() : input{} diff --git a/drumgizmo/enginefactory.h b/drumgizmo/enginefactory.h index c599040..6457ed1 100644 --- a/drumgizmo/enginefactory.h +++ b/drumgizmo/enginefactory.h @@ -65,6 +65,7 @@ class EngineFactory { private: std::list<std::string> input, output; // available engines + #ifdef USE_JACK std::unique_ptr<JackClient> jack; |