summaryrefslogtreecommitdiffstats
path: root/src/PatchageCanvas.hpp
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.hpp
parent7bbcd8405b0e9d04c74be1f13d1b54f3f72e7c7d (diff)
downloadpatchage-762cfaa66a7be2fe61722d1d2a1679af65bd1f9a.tar.gz
patchage-762cfaa66a7be2fe61722d1d2a1679af65bd1f9a.tar.bz2
patchage-762cfaa66a7be2fe61722d1d2a1679af65bd1f9a.zip
Clean up includes
Diffstat (limited to 'src/PatchageCanvas.hpp')
-rw-r--r--src/PatchageCanvas.hpp19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/PatchageCanvas.hpp b/src/PatchageCanvas.hpp
index 4b5fac1..ffe43ac 100644
--- a/src/PatchageCanvas.hpp
+++ b/src/PatchageCanvas.hpp
@@ -17,21 +17,22 @@
#ifndef PATCHAGE_PATCHAGECANVAS_HPP
#define PATCHAGE_PATCHAGECANVAS_HPP
-#include <map>
-#include <string>
-
#include "patchage_config.h"
-#ifdef HAVE_ALSA
- #include <alsa/asoundlib.h>
-#endif
-
-#include "ganv/Canvas.hpp"
-
#include "PatchageEvent.hpp"
#include "PatchageModule.hpp"
#include "PortID.hpp"
+#include "ganv/Canvas.hpp"
+
+#ifdef HAVE_ALSA
+ #include <alsa/asoundlib.h>
+#endif
+
+#include <map>
+#include <string>
+#include <utility>
+
class Patchage;
class PatchageModule;
class PatchagePort;