summaryrefslogtreecommitdiffstats
path: root/src/server/events/Ping.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/events/Ping.hpp')
-rw-r--r--src/server/events/Ping.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/events/Ping.hpp b/src/server/events/Ping.hpp
index 2353e496..ad732397 100644
--- a/src/server/events/Ping.hpp
+++ b/src/server/events/Ping.hpp
@@ -18,7 +18,7 @@
#ifndef INGEN_EVENTS_PING_HPP
#define INGEN_EVENTS_PING_HPP
-#include "QueuedEvent.hpp"
+#include "Event.hpp"
#include "types.hpp"
#include "Request.hpp"
@@ -34,11 +34,11 @@ namespace Events {
*
* \ingroup engine
*/
-class Ping : public QueuedEvent
+class Ping : public Event
{
public:
Ping(Engine& engine, SharedPtr<Request> request, SampleCount timestamp)
- : QueuedEvent(engine, request, timestamp)
+ : Event(engine, request, timestamp)
{}
void post_process() { _request->respond_ok(); }