summaryrefslogtreecommitdiffstats
path: root/src/bindings/Client.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bindings/Client.hpp')
-rw-r--r--src/bindings/Client.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bindings/Client.hpp b/src/bindings/Client.hpp
index 8ca234cc..bcf7b50a 100644
--- a/src/bindings/Client.hpp
+++ b/src/bindings/Client.hpp
@@ -3,11 +3,11 @@
/** Need a stub ClientInterface without pure virtual methods
* to allow inheritance in the script
*/
-class Client : public Ingen::Shared::ClientInterface
+class Client : public Ingen::ClientInterface
{
public:
/** Wrapper for engine->register_client to appease SWIG */
- virtual void subscribe(Ingen::Shared::EngineInterface* engine) {
+ virtual void subscribe(Ingen::yEngineInterface* engine) {
engine->register_client(this);
}
@@ -18,7 +18,7 @@ public:
void response_ok(int32_t id) {}
void response_error(int32_t id, const std::string& msg) {}
void error(const std::string& msg) {}
- void put(const Raul::URI& path, const Ingen::Shared::Resource::Properties& properties) {}
+ void put(const Raul::URI& path, const Ingen::Resource::Properties& properties) {}
void connect(const Raul::Path& src_port_path, const Raul::Path& dst_port_path) {}
void del(const Raul::Path& path) {}
void move(const Raul::Path& old_path, const Raul::Path& new_path) {}