summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/Driver.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/Driver.h')
-rw-r--r--src/libs/engine/Driver.h6
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