diff options
author | David Robillard <d@drobilla.net> | 2011-05-24 22:21:20 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-05-24 22:21:20 +0000 |
commit | 881eac58c2f9bf1fcb18ef7dcda7ab025e327871 (patch) | |
tree | ef6e61d1547afab07dfb67bd0a7d32b33a4a4e89 /include | |
parent | c85f3ab4c7d4c1e793519a400f10fc8499459d80 (diff) | |
download | ingen-881eac58c2f9bf1fcb18ef7dcda7ab025e327871.tar.gz ingen-881eac58c2f9bf1fcb18ef7dcda7ab025e327871.tar.bz2 ingen-881eac58c2f9bf1fcb18ef7dcda7ab025e327871.zip |
Tidy up headers.
Remove dependency on OSCEngineSender and HTTPEngineSender from GUI code.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3317 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'include')
-rw-r--r-- | include/ingen/Connection.hpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/ingen/Connection.hpp b/include/ingen/Connection.hpp index 59b5383d..f300adb8 100644 --- a/include/ingen/Connection.hpp +++ b/include/ingen/Connection.hpp @@ -18,7 +18,7 @@ #ifndef INGEN_INTERFACE_CONNECTION_HPP #define INGEN_INTERFACE_CONNECTION_HPP -#include "raul/Path.hpp" +namespace Raul { class Path; } namespace Ingen { @@ -30,8 +30,9 @@ class Connection { public: virtual ~Connection() {} - virtual const Raul::Path src_port_path() const = 0; - virtual const Raul::Path dst_port_path() const = 0; + + virtual const Raul::Path& src_port_path() const = 0; + virtual const Raul::Path& dst_port_path() const = 0; }; } // namespace Ingen |