summaryrefslogtreecommitdiffstats
path: root/src/common/interface/ClientInterface.hpp
diff options
context:
space:
mode:
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;