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.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/interface/ClientInterface.hpp b/src/common/interface/ClientInterface.hpp
index 619c48b8..9ec875ac 100644
--- a/src/common/interface/ClientInterface.hpp
+++ b/src/common/interface/ClientInterface.hpp
@@ -28,6 +28,7 @@ namespace Raul { class Path; class URI; }
namespace Ingen {
namespace Shared {
+class MessageType;
/** The (only) interface the engine uses to communicate with clients.
* Purely virtual (except for the destructor).
@@ -55,6 +56,8 @@ public:
virtual void error(const std::string& msg) = 0;
virtual void activity(const Raul::Path& path) = 0;
+
+ virtual void binding(const Raul::Path& path, const MessageType& type) = 0;
};