summaryrefslogtreecommitdiffstats
path: root/src/PatchageCanvas.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-12-29 20:02:36 -0500
committerDavid Robillard <d@drobilla.net>2019-12-29 20:02:36 -0500
commit762cfaa66a7be2fe61722d1d2a1679af65bd1f9a (patch)
tree7d60aeef03703f305ed672ed2ce44395a38f1bf3 /src/PatchageCanvas.cpp
parent7bbcd8405b0e9d04c74be1f13d1b54f3f72e7c7d (diff)
downloadpatchage-762cfaa66a7be2fe61722d1d2a1679af65bd1f9a.tar.gz
patchage-762cfaa66a7be2fe61722d1d2a1679af65bd1f9a.tar.bz2
patchage-762cfaa66a7be2fe61722d1d2a1679af65bd1f9a.zip
Clean up includes
Diffstat (limited to 'src/PatchageCanvas.cpp')
-rw-r--r--src/PatchageCanvas.cpp17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/PatchageCanvas.cpp b/src/PatchageCanvas.cpp
index 4d63a4b..4b8d309 100644
--- a/src/PatchageCanvas.cpp
+++ b/src/PatchageCanvas.cpp
@@ -14,25 +14,26 @@
* along with Patchage. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <boost/format.hpp>
+#include "PatchageCanvas.hpp"
#include "patchage_config.h"
+#include "Patchage.hpp"
+#include "PatchageModule.hpp"
+#include "PatchagePort.hpp"
+
#if defined(HAVE_JACK_DBUS)
- #include "JackDbusDriver.hpp"
+ #include "JackDbusDriver.hpp"
#elif defined(PATCHAGE_LIBJACK)
- #include "JackDriver.hpp"
+ #include "JackDriver.hpp"
#endif
#ifdef HAVE_ALSA
- #include "AlsaDriver.hpp"
+ #include "AlsaDriver.hpp"
#endif
#include "ganv/Edge.hpp"
-#include "Patchage.hpp"
-#include "PatchageCanvas.hpp"
-#include "PatchageModule.hpp"
-#include "PatchagePort.hpp"
+#include <boost/format.hpp>
using std::string;
using boost::format;