From d38458e73cf7dfe02d2ea0ceb050f64df43413b8 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 16 Oct 2006 07:28:30 +0000 Subject: Used boost::noncopyable to eliminate undefined private copy constructors spread everywhere. git-svn-id: http://svn.drobilla.net/lad/ingen@182 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/client/NodeModel.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'src/libs/client/NodeModel.h') diff --git a/src/libs/client/NodeModel.h b/src/libs/client/NodeModel.h index e251d8ad..a63932d9 100644 --- a/src/libs/client/NodeModel.h +++ b/src/libs/client/NodeModel.h @@ -83,13 +83,8 @@ protected: bool m_polyphonic; PortModelList m_ports; ///< List of ports (not a map to preserve order) string m_plugin_uri; ///< Plugin URI (if PluginModel is unknown) - SharedPtr m_plugin; ///< The plugin this node is an instance of + SharedPtr m_plugin; ///< The plugin this node is an instance of map > m_banks; ///< DSSI banks - -private: - // Prevent copies (undefined) - NodeModel(const NodeModel& copy); - NodeModel& operator=(const NodeModel& copy); }; -- cgit v1.2.1