summaryrefslogtreecommitdiffstats
path: root/src/Driver.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Driver.hpp')
-rw-r--r--src/Driver.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Driver.hpp b/src/Driver.hpp
index 7873ef3..231b7a2 100644
--- a/src/Driver.hpp
+++ b/src/Driver.hpp
@@ -17,7 +17,7 @@
#ifndef PATCHAGE_DRIVER_HPP
#define PATCHAGE_DRIVER_HPP
-#include "PatchageEvent.hpp"
+#include "Event.hpp"
#include <functional>
#include <utility>
@@ -28,7 +28,7 @@ namespace patchage {
class Driver
{
public:
- using EventSink = std::function<void(const PatchageEvent&)>;
+ using EventSink = std::function<void(const Event&)>;
explicit Driver(EventSink emit_event)
: _emit_event{std::move(emit_event)}