From 682a43546becbc86a210003846778ebb0c38718a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 2 Oct 2006 20:56:28 +0000 Subject: boost::shared_ptr-ification of FlowCanvas. Extreme performance enhancements in Patchage (eg don't redraw the whole canvas every time). Patchage work towards being a control centre. Broken commit (ingen doesn't even compile) for machine transfer, don't even bother trying this revision. git-svn-id: http://svn.drobilla.net/lad/patchage@147 a436a847-0d15-0410-975c-d299462d15a1 --- src/PatchagePort.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'src/PatchagePort.h') diff --git a/src/PatchagePort.h b/src/PatchagePort.h index 601bce9..7ebc995 100644 --- a/src/PatchagePort.h +++ b/src/PatchagePort.h @@ -1,11 +1,11 @@ -/* This file is part of Om. Copyright (C) 2004 Dave Robillard. +/* This file is part of Patchage. Copyright (C) 2004 Dave Robillard. * - * Om is free software; you can redistribute it and/or modify it under the + * Patchage 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 + * Patchage 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. * @@ -14,7 +14,6 @@ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - #ifndef PATCHAGEPORT_H #define PATCHAGEPORT_H @@ -37,7 +36,7 @@ enum PortType { JACK_AUDIO, JACK_MIDI, ALSA_MIDI }; class PatchagePort : public LibFlowCanvas::Port { public: - PatchagePort(LibFlowCanvas::Module* module, PortType type, const string& name, bool is_input, int color) + PatchagePort(boost::shared_ptr module, PortType type, const string& name, bool is_input, int color) : Port(module, name, is_input, color), m_type(type) { @@ -53,7 +52,7 @@ public: { return (m_type == ALSA_MIDI) ? &m_alsa_addr : NULL; } /** Returns the full name of this port, as "modulename:portname" */ - string full_name() const { return m_module->name() + ":" + m_name; } + string full_name() const { return m_module.lock()->name() + ":" + m_name; } PortType type() const { return m_type; } -- cgit v1.2.1