summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/plugin_insert.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-02-14 19:45:30 +0000
committerCarl Hetherington <carl@carlh.net>2009-02-14 19:45:30 +0000
commit9a3734a6bd0450faf92a8b1add2d5e052a4534ca (patch)
treec7feafe8169e8782e4133dd38b8cd1e140c639bc /libs/ardour/ardour/plugin_insert.h
parentb35f3088942ff623e9d09fe6acb1f214dddf73ce (diff)
Make DnD copy processors using their XML representations. Remove unused
copy constructors from the Processor hierarchy, and declare them private to explicitly disallow copy construction. git-svn-id: svn://localhost/ardour2/branches/3.0@4556 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/plugin_insert.h')
-rw-r--r--libs/ardour/ardour/plugin_insert.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/ardour/plugin_insert.h b/libs/ardour/ardour/plugin_insert.h
index 2583728ef3..ee5c7405fb 100644
--- a/libs/ardour/ardour/plugin_insert.h
+++ b/libs/ardour/ardour/plugin_insert.h
@@ -46,7 +46,6 @@ class PluginInsert : public Processor
public:
PluginInsert (Session&, boost::shared_ptr<Plugin>, Placement);
PluginInsert (Session&, const XMLNode&);
- PluginInsert (const PluginInsert&);
~PluginInsert ();
static const string port_automation_node_name;
@@ -117,6 +116,8 @@ class PluginInsert : public Processor
}
private:
+ /* disallow copy construction */
+ PluginInsert (const PluginInsert&);
void parameter_changed (Evoral::Parameter, float);