/* This file is part of Ingen. Copyright (C) 2006 Dave Robillard. * * Ingen 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. * * Ingen 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 "Port.h" #include #include #include "PatchModel.h" #include "PortModel.h" #include "ControlModel.h" #include "Configuration.h" #include "App.h" using std::cerr; using std::endl; using namespace Ingen::Client; namespace Ingenuity { /** @param flip Make an input port appear as an output port, and vice versa. */ Port::Port(boost::shared_ptr module, SharedPtr pm, bool flip) : LibFlowCanvas::Port(module, pm->path().name(), flip ? (!pm->is_input()) : pm->is_input(), App::instance().configuration()->get_port_color(pm.get())), m_port_model(pm) { assert(module); assert(m_port_model); } } // namespace Ingenuity