From c8a24889362031264661f3124d59f076d9526502 Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Fri, 4 Jan 2013 14:46:39 +0100 Subject: added private copy ctors to prevent copying of plugin objects --- plugin.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugin.cc b/plugin.cc index 2f07f63..50ffe84 100644 --- a/plugin.cc +++ b/plugin.cc @@ -41,6 +41,10 @@ private: cString coldplug_dir; +private: + cInputDevicePlugin(cInputDevicePlugin const &); + operator = (cInputDevicePlugin const &); + public: cInputDevicePlugin(void); virtual ~cInputDevicePlugin(); -- cgit v1.2.3