summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/OutputPort.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2006-06-22 07:38:52 +0000
committerDavid Robillard <d@drobilla.net>2006-06-22 07:38:52 +0000
commitc3dc3ff5a5465ed59b0a8b36eb234130dbf0a9d6 (patch)
tree15cb79a6c687883d326d1e8861475c0eebc04dfe /src/libs/engine/OutputPort.h
parent9cde7e0c1097cf0aa52113a942a3b88d930568b6 (diff)
downloadingen-c3dc3ff5a5465ed59b0a8b36eb234130dbf0a9d6.tar.gz
ingen-c3dc3ff5a5465ed59b0a8b36eb234130dbf0a9d6.tar.bz2
ingen-c3dc3ff5a5465ed59b0a8b36eb234130dbf0a9d6.zip
LADSPA port default value loading (engine side)
git-svn-id: http://svn.drobilla.net/lad/ingen@77 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/OutputPort.h')
-rw-r--r--src/libs/engine/OutputPort.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libs/engine/OutputPort.h b/src/libs/engine/OutputPort.h
index 89cb3398..23ead848 100644
--- a/src/libs/engine/OutputPort.h
+++ b/src/libs/engine/OutputPort.h
@@ -42,11 +42,14 @@ template <typename T>
class OutputPort : virtual public TypedPort<T>
{
public:
- OutputPort(Node* parent, const string& name, size_t index, size_t poly, DataType type, size_t buffer_size);
+ OutputPort(Node* parent, const string& name,
+ size_t index, size_t poly,
+ DataType type, size_t buffer_size)
+ : TypedPort<T>(parent, name, index, poly, type, buffer_size)
+ {}
+
virtual ~OutputPort() {}
- //void set_tied_port(InputPort<T>* port);
-
bool is_input() const { return false; }
bool is_output() const { return true; }
@@ -54,9 +57,6 @@ private:
// Prevent copies (undefined)
OutputPort(const OutputPort& copy);
OutputPort<T>& operator=(const OutputPort<T>&);
-
- //using TypedPort<T>::m_is_tied;
- //using TypedPort<T>::m_tied_port;
};