summaryrefslogtreecommitdiffstats
path: root/src/common/interface
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-10-08 01:38:38 +0000
committerDavid Robillard <d@drobilla.net>2007-10-08 01:38:38 +0000
commit9d9efa215c52a6b75eef7e9a8b088b11dfd76a07 (patch)
tree7983e607cf87ddd4b1e099eedfb218880805717d /src/common/interface
parenta421a44310ee472fbee15f150d32b826a8371dbf (diff)
downloadingen-9d9efa215c52a6b75eef7e9a8b088b11dfd76a07.tar.gz
ingen-9d9efa215c52a6b75eef7e9a8b088b11dfd76a07.tar.bz2
ingen-9d9efa215c52a6b75eef7e9a8b088b11dfd76a07.zip
Shared abstract Connection interface.
Only Patch to go, now.... git-svn-id: http://svn.drobilla.net/lad/ingen@843 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/common/interface')
-rw-r--r--src/common/interface/Connection.hpp42
-rw-r--r--src/common/interface/Makefile.am7
2 files changed, 46 insertions, 3 deletions
diff --git a/src/common/interface/Connection.hpp b/src/common/interface/Connection.hpp
new file mode 100644
index 00000000..4d5ea1aa
--- /dev/null
+++ b/src/common/interface/Connection.hpp
@@ -0,0 +1,42 @@
+/* This file is part of Ingen.
+ * Copyright (C) 2007 Dave Robillard <http://drobilla.net>
+ *
+ * Ingen is free software; you can redistribute it and/or modify it under the
+ * terms of the GNU General Public License as published by the Free Software
+ * Foundation; either version 2 of the License, or (at your option) any later
+ * version.
+ *
+ * Ingen is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef CONNECTION_H
+#define CONNECTION_H
+
+#include <raul/Path.hpp>
+
+namespace Ingen {
+namespace Shared {
+
+
+/** A connection between two ports.
+ *
+ * \ingroup interface
+ */
+class Connection
+{
+public:
+ virtual const Raul::Path src_port_path() const = 0;
+ virtual const Raul::Path dst_port_path() const = 0;
+};
+
+
+} // namespace Shared
+} // namespace Ingen
+
+#endif // CONNECTION_H
diff --git a/src/common/interface/Makefile.am b/src/common/interface/Makefile.am
index 8442df77..7fc68563 100644
--- a/src/common/interface/Makefile.am
+++ b/src/common/interface/Makefile.am
@@ -1,8 +1,9 @@
EXTRA_DIST = \
- README \
ClientInterface.hpp \
+ Connection.hpp \
+ DataType.hpp \
EngineInterface.hpp \
- Plugin.hpp \
Node.hpp \
+ Plugin.hpp \
Port.hpp \
- DataType.hpp \
+ README