diff options
author | David Robillard <d@drobilla.net> | 2011-04-18 12:47:15 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-04-18 12:47:15 +0000 |
commit | 8ba6bb943889bfdd58cf4a971a152041c1199cfe (patch) | |
tree | 91fbe8577e6d01070aa81f532ddd8102db1476f5 /src/bindings | |
parent | 3cd3bfe5079f84fafb7dc217f5393d6ba947109c (diff) | |
download | ingen-8ba6bb943889bfdd58cf4a971a152041c1199cfe.tar.gz ingen-8ba6bb943889bfdd58cf4a971a152041c1199cfe.tar.bz2 ingen-8ba6bb943889bfdd58cf4a971a152041c1199cfe.zip |
Put engine code in new Ingen::Engine namespace.
Put core interfaces in Ingen namespace (not Ingen::Shared).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3159 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/bindings')
-rw-r--r-- | src/bindings/Client.hpp | 6 | ||||
-rw-r--r-- | src/bindings/ingen.i | 2 |
2 files changed, 4 insertions, 4 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) {} diff --git a/src/bindings/ingen.i b/src/bindings/ingen.i index bafc1704..c1207415 100644 --- a/src/bindings/ingen.i +++ b/src/bindings/ingen.i @@ -20,7 +20,7 @@ // generate directors for all classes that have virtual methods %feature("director"); -%feature("director") Ingen::Shared::ClientInterface; +%feature("director") Ingen::ClientInterface; //%feature("director") Ingen::Shared::EngineInterface; typedef Ingen::Shared::World World; |