summaryrefslogtreecommitdiffstats
path: root/src/LashDriver.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-02-17 22:00:26 +0000
committerDavid Robillard <d@drobilla.net>2008-02-17 22:00:26 +0000
commitbbb3abbe4b86a23ef884d38ca299aff13b8f9242 (patch)
tree71c193dc84cacc83daa1aa686a6e655d020f5f74 /src/LashDriver.hpp
parenta26faf1aa846e9ab9c5ede7a424549e235cf6fb0 (diff)
downloadpatchage-bbb3abbe4b86a23ef884d38ca299aff13b8f9242.tar.gz
patchage-bbb3abbe4b86a23ef884d38ca299aff13b8f9242.tar.bz2
patchage-bbb3abbe4b86a23ef884d38ca299aff13b8f9242.zip
Remove Jack API dependence from PatchageEvent.
git-svn-id: http://svn.drobilla.net/lad/patchage@1151 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/LashDriver.hpp')
-rw-r--r--src/LashDriver.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/LashDriver.hpp b/src/LashDriver.hpp
index 4cca58d..c1d648d 100644
--- a/src/LashDriver.hpp
+++ b/src/LashDriver.hpp
@@ -35,6 +35,18 @@ public:
bool is_attached() const
{ return _server_interface && _server_interface->enabled(); }
+ boost::shared_ptr<PatchagePort> find_port_view(
+ Patchage* patchage,
+ const PatchageEvent::PortRef& ref) {
+ return boost::shared_ptr<PatchagePort>();
+ }
+
+ boost::shared_ptr<PatchagePort> create_port_view(
+ Patchage* patchage,
+ const PatchageEvent::PortRef& ref) {
+ return boost::shared_ptr<PatchagePort>();
+ }
+
bool connect(boost::shared_ptr<PatchagePort>, boost::shared_ptr<PatchagePort>)
{ return false; }