summaryrefslogtreecommitdiffstats
path: root/src/handle_event.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/handle_event.hpp')
-rw-r--r--src/handle_event.hpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/handle_event.hpp b/src/handle_event.hpp
index 6a62d61..5cf15ef 100644
--- a/src/handle_event.hpp
+++ b/src/handle_event.hpp
@@ -21,11 +21,18 @@
namespace patchage {
-class Patchage;
+class Configuration;
+class Metadata;
+class Canvas;
+class ILog;
/// Handle an event from the system by updating the GUI as necessary
void
-handle_event(Patchage& patchage, const Event& event);
+handle_event(Configuration& conf,
+ Metadata& metadata,
+ Canvas& canvas,
+ ILog& log,
+ const Event& event);
} // namespace patchage