summaryrefslogtreecommitdiff
path: root/drumgizmo
diff options
context:
space:
mode:
authorChristian Glöckner <cgloeckner@freenet.de>2016-01-22 12:57:47 +0100
committerAndré Nusser <andre.nusser@googlemail.com>2016-02-09 09:03:16 +0100
commit7236fee052f52667f116ed83cacb21ed587d0d65 (patch)
tree95bbae0ed8ee2114ec6690f6674aec7867947897 /drumgizmo
parentb2b5116d8c3451f4f5699e328b46beea6c994d21 (diff)
removed unnecessary header from enginefactory.cc
Diffstat (limited to 'drumgizmo')
-rw-r--r--drumgizmo/enginefactory.cc1
-rw-r--r--drumgizmo/enginefactory.h1
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;