diff options
Diffstat (limited to 'src/LashDriver.hpp')
-rw-r--r-- | src/LashDriver.hpp | 12 |
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; } |