summaryrefslogtreecommitdiffstats
path: root/src/common/interface/ClientInterface.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-08-01 03:20:35 +0000
committerDavid Robillard <d@drobilla.net>2007-08-01 03:20:35 +0000
commit9cd4eddfb41c4573d4acd4f625572c4cdff50497 (patch)
treeb9ebf2ecd19ddc5033c891edf17fae01a61ef438 /src/common/interface/ClientInterface.hpp
parent22395ab7d817dec53e2c2fff07de6d88db70492e (diff)
downloadingen-9cd4eddfb41c4573d4acd4f625572c4cdff50497.tar.gz
ingen-9cd4eddfb41c4573d4acd4f625572c4cdff50497.tar.bz2
ingen-9cd4eddfb41c4573d4acd4f625572c4cdff50497.zip
More SWIGification. Engine->Client calls/messages implemented... and segfault somewhere in Python :/ .
git-svn-id: http://svn.drobilla.net/lad/ingen@664 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/common/interface/ClientInterface.hpp')
-rw-r--r--src/common/interface/ClientInterface.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/interface/ClientInterface.hpp b/src/common/interface/ClientInterface.hpp
index 06114101..a13b870c 100644
--- a/src/common/interface/ClientInterface.hpp
+++ b/src/common/interface/ClientInterface.hpp
@@ -25,6 +25,8 @@
namespace Ingen {
namespace Shared {
+class EngineInterface;
+
/** The (only) interface the engine uses to communicate with clients.
*
@@ -35,6 +37,9 @@ class ClientInterface
public:
virtual ~ClientInterface() {}
+
+ /** Wrapper for engine->register_client to appease SWIG */
+ virtual void subscribe(EngineInterface* engine) = 0;
virtual void response(int32_t id, bool success, std::string msg) = 0;