diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2012-05-09 13:49:46 +0200 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2012-05-09 13:49:46 +0200 |
commit | 9bb23fd7bd0e651fa4e4902e7033ced95e18d373 (patch) | |
tree | 365fd6326c700992aed65ae42bcc7c1af8498e17 /setupeepg.h | |
parent | d91b6baad0e8f377254fdc67780602d03e745433 (diff) | |
download | vdr-plugin-eepg-9bb23fd7bd0e651fa4e4902e7033ced95e18d373.tar.gz vdr-plugin-eepg-9bb23fd7bd0e651fa4e4902e7033ced95e18d373.tar.bz2 |
changes in cSetupEEPG
Diffstat (limited to 'setupeepg.h')
-rw-r--r-- | setupeepg.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/setupeepg.h b/setupeepg.h index 7441223..ef1ad2a 100644 --- a/setupeepg.h +++ b/setupeepg.h @@ -26,7 +26,9 @@ public: private: cSetupEEPG (void); - cSetupEEPG* _setupEEPG; + cSetupEEPG(cSetupEEPG const&){}; // copy constructor is private + cSetupEEPG& operator=(cSetupEEPG const&){}; // assignment operator is private + static cSetupEEPG* _setupEEPG; }; |