From 4adc4f4a2b4f57f43affcd48f2c01c60f471b20a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 19 Jun 2006 00:42:15 +0000 Subject: Renamed PortBase to TypedPort git-svn-id: http://svn.drobilla.net/lad/grauph@60 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/Driver.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/libs/engine/Driver.h') diff --git a/src/libs/engine/Driver.h b/src/libs/engine/Driver.h index be882d8d..ade50a71 100644 --- a/src/libs/engine/Driver.h +++ b/src/libs/engine/Driver.h @@ -22,7 +22,7 @@ using std::string; namespace Om { -template class PortBase; +template class TypedPort; /** Representation of a system (outside Om, ie hardware) audio port. @@ -77,7 +77,7 @@ public: * * May return NULL if the Driver can not drive the port for some reason. */ - virtual DriverPort* create_port(PortBase* patch_port) = 0; + virtual DriverPort* create_port(TypedPort* patch_port) = 0; }; @@ -102,7 +102,7 @@ public: void enable() {} void disable() {} - DriverPort* create_port(PortBase* patch_port) { return NULL; } + DriverPort* create_port(TypedPort* patch_port) { return NULL; } }; #endif -- cgit v1.2.1