summaryrefslogtreecommitdiffstats
path: root/src/handle_event.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-12-14 13:13:56 +0100
committerDavid Robillard <d@drobilla.net>2020-12-14 13:13:56 +0100
commitc7cc84afee9b6d8b196679bf784751c4052020a3 (patch)
treeb78ad7c13975f977d683698694d661972160e038 /src/handle_event.cpp
parent6417299c90009f1eca68d58d62f8e46043aabce3 (diff)
downloadpatchage-c7cc84afee9b6d8b196679bf784751c4052020a3.tar.gz
patchage-c7cc84afee9b6d8b196679bf784751c4052020a3.tar.bz2
patchage-c7cc84afee9b6d8b196679bf784751c4052020a3.zip
Clean up includes
Diffstat (limited to 'src/handle_event.cpp')
-rw-r--r--src/handle_event.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/handle_event.cpp b/src/handle_event.cpp
index 40f6c22..4e77232 100644
--- a/src/handle_event.cpp
+++ b/src/handle_event.cpp
@@ -17,16 +17,24 @@
#include "handle_event.hpp"
#include "Canvas.hpp"
-#include "CanvasModule.hpp"
#include "CanvasPort.hpp"
#include "Event.hpp"
+#include "ILog.hpp"
+#include "Metadata.hpp"
#include "Patchage.hpp"
+#include "PortID.hpp"
+#include "warnings.hpp"
PATCHAGE_DISABLE_FMT_WARNINGS
#include <fmt/core.h>
#include <fmt/ostream.h>
PATCHAGE_RESTORE_WARNINGS
+#include <boost/variant/apply_visitor.hpp>
+
+#include <iosfwd>
+#include <memory>
+
namespace patchage {
namespace {