diff options
author | David Robillard <d@drobilla.net> | 2006-06-19 00:42:15 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-06-19 00:42:15 +0000 |
commit | 4adc4f4a2b4f57f43affcd48f2c01c60f471b20a (patch) | |
tree | 48b36e2df65257905fde0141f5301347ca643f24 /src/libs/engine/Driver.h | |
parent | b1b4335b767f34b41903a85040cd07dabe0f33ec (diff) | |
download | ingen-4adc4f4a2b4f57f43affcd48f2c01c60f471b20a.tar.gz ingen-4adc4f4a2b4f57f43affcd48f2c01c60f471b20a.tar.bz2 ingen-4adc4f4a2b4f57f43affcd48f2c01c60f471b20a.zip |
Renamed PortBase to TypedPort
git-svn-id: http://svn.drobilla.net/lad/grauph@60 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/Driver.h')
-rw-r--r-- | src/libs/engine/Driver.h | 6 |
1 files changed, 3 insertions, 3 deletions
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 <typename T> class PortBase; +template <typename T> 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<T>* patch_port) = 0; + virtual DriverPort* create_port(TypedPort<T>* patch_port) = 0; }; @@ -102,7 +102,7 @@ public: void enable() {} void disable() {} - DriverPort* create_port(PortBase<sample>* patch_port) { return NULL; } + DriverPort* create_port(TypedPort<sample>* patch_port) { return NULL; } }; #endif |