summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/OutputPort.cpp
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.cpp
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.cpp')
-rw-r--r--src/libs/engine/OutputPort.cpp49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/libs/engine/OutputPort.cpp b/src/libs/engine/OutputPort.cpp
deleted file mode 100644
index 31280d49..00000000
--- a/src/libs/engine/OutputPort.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-/* This file is part of Ingen. Copyright (C) 2006 Dave Robillard.
- *
- * Om is free software; you can redistribute it and/or modify it under the
- * terms of the GNU General Public License as published by the Free Software
- * Foundation; either version 2 of the License, or (at your option) any later
- * version.
- *
- * Om is distributed in the hope that it will be useful, but WITHOUT ANY
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#include "OutputPort.h"
-#include "InputPort.h"
-#include <cassert>
-
-namespace Om {
-
-template<typename T>
-OutputPort<T>::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)
-{
-}
-template OutputPort<sample>::OutputPort(Node* parent, const string& name, size_t index, size_t poly, DataType type, size_t buffer_size);
-template OutputPort<MidiMessage>::OutputPort(Node* parent, const string& name, size_t index, size_t poly, DataType type, size_t buffer_size);
-
-#if 0
-template<typename T>
-void
-OutputPort<T>::set_tied_port(InputPort<T>* port)
-{
- //assert(!m_is_tied);
- //assert(m_tied_port == NULL);
- assert(static_cast<TypedPort<T>*>(port) != static_cast<TypedPort<T>*>(this));
- assert(port != NULL);
-
- //m_is_tied = true;
- //m_tied_port = (TypedPort<T>*)port;
-}
-template void OutputPort<sample>::set_tied_port(InputPort<sample>* port);
-template void OutputPort<MidiMessage>::set_tied_port(InputPort<MidiMessage>* port);
-#endif
-
-} // namespace Om
-