diff options
Diffstat (limited to 'src/Driver.hpp')
-rw-r--r-- | src/Driver.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Driver.hpp b/src/Driver.hpp index 5d0c59d..820e7eb 100644 --- a/src/Driver.hpp +++ b/src/Driver.hpp @@ -24,6 +24,7 @@ #include "PatchageEvent.hpp" class PatchagePort; +class PatchageCanvas; /** Trival driver base class */ class Driver { @@ -35,6 +36,14 @@ public: virtual bool is_attached() const = 0; virtual void refresh() = 0; + + virtual boost::shared_ptr<PatchagePort> create_port_view( + Patchage* patchage, + const PatchageEvent::PortRef& ref) = 0; + + virtual boost::shared_ptr<PatchagePort> find_port_view( + Patchage* patchage, + const PatchageEvent::PortRef& ref) = 0; virtual bool connect(boost::shared_ptr<PatchagePort> src_port, boost::shared_ptr<PatchagePort> dst_port) = 0; |