From e96c36c1a7abb062e36efc0ac95c35fedcef922e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 8 Apr 2007 06:04:32 +0000 Subject: De-template-ification of port types (req. for LV2 MIDI, but nice code size reduction). LV2 MIDI patching support (LV2 style MIDI throughout, inc. internal plugins). git-svn-id: http://svn.drobilla.net/lad/ingen@415 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/DuplexPort.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'src/libs/engine/DuplexPort.h') diff --git a/src/libs/engine/DuplexPort.h b/src/libs/engine/DuplexPort.h index 1c4e738d..10c305b4 100644 --- a/src/libs/engine/DuplexPort.h +++ b/src/libs/engine/DuplexPort.h @@ -28,7 +28,6 @@ using std::string; namespace Ingen { -class MidiMessage; class Node; @@ -40,8 +39,7 @@ class Node; * * \ingroup engine */ -template -class DuplexPort : public InputPort, public OutputPort +class DuplexPort : public InputPort, public OutputPort { public: DuplexPort(Node* parent, const string& name, size_t index, size_t poly, DataType type, size_t buffer_size, bool is_output); @@ -57,9 +55,6 @@ protected: }; -template class DuplexPort; -template class DuplexPort; - } // namespace Ingen #endif // DUPLEXPORT_H -- cgit v1.2.1