diff options
| author | Christian Glöckner <cgloeckner@freenet.de> | 2016-01-22 12:57:47 +0100 | 
|---|---|---|
| committer | André Nusser <andre.nusser@googlemail.com> | 2016-02-09 09:03:16 +0100 | 
| commit | 7236fee052f52667f116ed83cacb21ed587d0d65 (patch) | |
| tree | 95bbae0ed8ee2114ec6690f6674aec7867947897 | |
| parent | b2b5116d8c3451f4f5699e328b46beea6c994d21 (diff) | |
removed unnecessary header from enginefactory.cc
| -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; | 
