From 881eac58c2f9bf1fcb18ef7dcda7ab025e327871 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 24 May 2011 22:21:20 +0000 Subject: 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 --- include/ingen/Connection.hpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'include/ingen') 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 -- cgit v1.2.1