From 9cd4eddfb41c4573d4acd4f625572c4cdff50497 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 1 Aug 2007 03:20:35 +0000 Subject: 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 --- src/common/interface/ClientInterface.hpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/common/interface/ClientInterface.hpp') 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; -- cgit v1.2.1