summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/MidiControlNode.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2006-10-16 07:28:30 +0000
committerDavid Robillard <d@drobilla.net>2006-10-16 07:28:30 +0000
commitd38458e73cf7dfe02d2ea0ceb050f64df43413b8 (patch)
tree298face3d076487f61a388a85001cc01a26a7d43 /src/libs/engine/MidiControlNode.h
parentd5049d43809c7546afcc2938791a90c7973d0fc2 (diff)
downloadingen-d38458e73cf7dfe02d2ea0ceb050f64df43413b8.tar.gz
ingen-d38458e73cf7dfe02d2ea0ceb050f64df43413b8.tar.bz2
ingen-d38458e73cf7dfe02d2ea0ceb050f64df43413b8.zip
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
Diffstat (limited to 'src/libs/engine/MidiControlNode.h')
-rw-r--r--src/libs/engine/MidiControlNode.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/libs/engine/MidiControlNode.h b/src/libs/engine/MidiControlNode.h
index b291fe9c..9b781696 100644
--- a/src/libs/engine/MidiControlNode.h
+++ b/src/libs/engine/MidiControlNode.h
@@ -49,10 +49,6 @@ public:
void learn(MidiLearnResponseEvent* ev) { _learning = true; _learn_event = ev; }
private:
- // Disallow copies (undefined)
- MidiControlNode(const MidiControlNode& copy);
- MidiControlNode& operator=(const MidiControlNode&);
-
bool _learning;
InputPort<MidiMessage>* _midi_in_port;