From 90e7284b2f3c9e491497030f4443130c1b6f98bf Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 12 May 2012 00:09:28 +0000 Subject: Remove Ping event and associated cruft. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4365 a436a847-0d15-0410-975c-d299462d15a1 --- src/server/events/Ping.hpp | 52 ---------------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 src/server/events/Ping.hpp (limited to 'src/server/events') diff --git a/src/server/events/Ping.hpp b/src/server/events/Ping.hpp deleted file mode 100644 index 879b8d8a..00000000 --- a/src/server/events/Ping.hpp +++ /dev/null @@ -1,52 +0,0 @@ -/* - This file is part of Ingen. - Copyright 2007-2012 David Robillard - - Ingen is free software: you can redistribute it and/or modify it under the - terms of the GNU Affero General Public License as published by the Free - Software Foundation, either version 3 of the License, or any later version. - - Ingen is distributed in the hope that it will be useful, but WITHOUT ANY - WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. See the GNU Affero General Public License for details. - - You should have received a copy of the GNU Affero General Public License - along with Ingen. If not, see . -*/ - -#ifndef INGEN_EVENTS_PING_HPP -#define INGEN_EVENTS_PING_HPP - -#include "Event.hpp" -#include "types.hpp" - -namespace Ingen { -namespace Server { - -class PortImpl; - -namespace Events { - -/** A ping that travels through the pre-processed event queue before responding - * (useful for the order guarantee). - * - * \ingroup engine - */ -class Ping : public Event -{ -public: - Ping(Engine& engine, - Interface* client, - int32_t id, - SampleCount timestamp) - : Event(engine, client, id, timestamp) - {} - - void post_process() { respond(SUCCESS); } -}; - -} // namespace Events -} // namespace Server -} // namespace Ingen - -#endif // INGEN_EVENTS_PING_HPP -- cgit v1.2.1