diff options
Diffstat (limited to 'include/ingen/Interface.hpp')
-rw-r--r-- | include/ingen/Interface.hpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/ingen/Interface.hpp b/include/ingen/Interface.hpp index 68de5684..cb17039e 100644 --- a/include/ingen/Interface.hpp +++ b/include/ingen/Interface.hpp @@ -31,9 +31,9 @@ #include <memory> #include <string> -namespace Raul { +namespace raul { class Path; -} // namespace Raul +} // namespace raul namespace ingen { @@ -92,24 +92,24 @@ public: message(Copy{_seq++, old_uri, new_uri}); } - inline void move(const Raul::Path& old_path, const Raul::Path& new_path) + inline void move(const raul::Path& old_path, const raul::Path& new_path) { message(Move{_seq++, old_path, new_path}); } inline void del(const URI& uri) { message(Del{_seq++, uri}); } - inline void connect(const Raul::Path& tail, const Raul::Path& head) + inline void connect(const raul::Path& tail, const raul::Path& head) { message(Connect{_seq++, tail, head}); } - inline void disconnect(const Raul::Path& tail, const Raul::Path& head) + inline void disconnect(const raul::Path& tail, const raul::Path& head) { message(Disconnect{_seq++, tail, head}); } - inline void disconnect_all(const Raul::Path& graph, const Raul::Path& path) + inline void disconnect_all(const raul::Path& graph, const raul::Path& path) { message(DisconnectAll{_seq++, graph, path}); } |