diff options
author | Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> | 2013-01-04 14:46:39 +0100 |
---|---|---|
committer | Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> | 2013-01-04 14:46:39 +0100 |
commit | c8a24889362031264661f3124d59f076d9526502 (patch) | |
tree | 0a6dbf305cb19f508bc5bdab25fff71dbaa1a1b5 | |
parent | a3bcdfe329270479d9ef83eaed0cc664b8b3fb20 (diff) | |
download | vdr-plugin-inputdev-c8a24889362031264661f3124d59f076d9526502.tar.gz vdr-plugin-inputdev-c8a24889362031264661f3124d59f076d9526502.tar.bz2 |
added private copy ctors to prevent copying of plugin objects
-rw-r--r-- | plugin.cc | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -41,6 +41,10 @@ private: cString coldplug_dir; +private: + cInputDevicePlugin(cInputDevicePlugin const &); + operator = (cInputDevicePlugin const &); + public: cInputDevicePlugin(void); virtual ~cInputDevicePlugin(); |