summaryrefslogtreecommitdiffstats
path: root/src/server/ServerInterfaceImpl.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-05-02 23:56:42 +0000
committerDavid Robillard <d@drobilla.net>2012-05-02 23:56:42 +0000
commite6fa87193fb9ed9672fb346d34bbe093ddcfe814 (patch)
treec591a04a1a69558e384f0a15da8870ac2ec05799 /src/server/ServerInterfaceImpl.hpp
parente7b828c884b82f58d2abb5babd55b6d322e9bac2 (diff)
downloadingen-e6fa87193fb9ed9672fb346d34bbe093ddcfe814.tar.gz
ingen-e6fa87193fb9ed9672fb346d34bbe093ddcfe814.tar.bz2
ingen-e6fa87193fb9ed9672fb346d34bbe093ddcfe814.zip
Separate EventSource interface from EventQueue implementation.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4316 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/ServerInterfaceImpl.hpp')
-rw-r--r--src/server/ServerInterfaceImpl.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/server/ServerInterfaceImpl.hpp b/src/server/ServerInterfaceImpl.hpp
index 56aea0a3..f34afaae 100644
--- a/src/server/ServerInterfaceImpl.hpp
+++ b/src/server/ServerInterfaceImpl.hpp
@@ -23,7 +23,7 @@
#include "raul/SharedPtr.hpp"
#include "ingen/Interface.hpp"
#include "ingen/Resource.hpp"
-#include "EventSource.hpp"
+#include "EventQueue.hpp"
#include "types.hpp"
namespace Ingen {
@@ -33,15 +33,15 @@ class Engine;
/** A queued (preprocessed) event source / interface.
*
- * This is the bridge between the Interface presented to the client, and
- * the EventSource that needs to be presented to the Driver.
+ * This is both an Interface and an EventSource, calling Interface methods
+ * will result in events in the EventSource.
*
* Responses occur through the event mechanism (which notified clients in
* event post_process methods) and are related to an event by an integer ID.
* If you do not register a request, you have no way of knowing if your calls
* are successful.
*/
-class ServerInterfaceImpl : public EventSource,
+class ServerInterfaceImpl : public EventQueue,
public Interface
{
public: