diff options
Diffstat (limited to 'src/JackDriver.cpp')
-rw-r--r-- | src/JackDriver.cpp | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/src/JackDriver.cpp b/src/JackDriver.cpp index 5daedae..9455a2a 100644 --- a/src/JackDriver.cpp +++ b/src/JackDriver.cpp @@ -14,28 +14,29 @@ * along with Patchage. If not, see <http://www.gnu.org/licenses/>. */ -#include <cassert> -#include <cstring> -#include <set> -#include <string> - -#include <boost/format.hpp> - -#include <jack/jack.h> -#include <jack/statistics.h> - #include "JackDriver.hpp" + #include "Patchage.hpp" #include "PatchageCanvas.hpp" #include "PatchageEvent.hpp" #include "PatchageModule.hpp" #include "Queue.hpp" #include "patchage_config.h" + #ifdef HAVE_JACK_METADATA #include <jack/metadata.h> #include "jackey.h" #endif +#include <boost/format.hpp> +#include <jack/jack.h> +#include <jack/statistics.h> + +#include <cassert> +#include <cstring> +#include <set> +#include <string> + using std::endl; using std::string; using boost::format; |