diff options
author | David Robillard <d@drobilla.net> | 2012-05-12 00:09:28 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-05-12 00:09:28 +0000 |
commit | 90e7284b2f3c9e491497030f4443130c1b6f98bf (patch) | |
tree | 5bfb92f278c71c0631b5a8fefdde90ad14402076 /src/server/events | |
parent | eaf3abc571e5c1a60cf6d65d55b3cc496d5e62dd (diff) | |
download | ingen-90e7284b2f3c9e491497030f4443130c1b6f98bf.tar.gz ingen-90e7284b2f3c9e491497030f4443130c1b6f98bf.tar.bz2 ingen-90e7284b2f3c9e491497030f4443130c1b6f98bf.zip |
Remove Ping event and associated cruft.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4365 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/events')
-rw-r--r-- | src/server/events/Ping.hpp | 52 |
1 files changed, 0 insertions, 52 deletions
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 <http://drobilla.net/> - - 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 <http://www.gnu.org/licenses/>. -*/ - -#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 |