diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2012-05-18 09:19:41 +0200 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2012-05-18 09:19:41 +0200 |
commit | 5745ef4a6bfeede40fe69067f51e714718243045 (patch) | |
tree | 4a7cf8c7b2194fd187b2e46300f1e1e3c653b692 /setupeepg.h | |
parent | 46f6510bb78a19f862bd3c1ffff6ac322ca6d6b4 (diff) | |
download | vdr-plugin-eepg-5745ef4a6bfeede40fe69067f51e714718243045.tar.gz vdr-plugin-eepg-5745ef4a6bfeede40fe69067f51e714718243045.tar.bz2 |
move cSetupEEPG to separate files
Diffstat (limited to 'setupeepg.h')
-rw-r--r-- | setupeepg.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/setupeepg.h b/setupeepg.h new file mode 100644 index 0000000..f5e342a --- /dev/null +++ b/setupeepg.h @@ -0,0 +1,35 @@ +/* + * setupeepg.h + * + * Created on: 08.5.2012 + * Author: d.petrovski + */ + +#ifndef SETUPEEPG_H_ +#define SETUPEEPG_H_ + +class cSetupEEPG +{ +public: + int OptPat; + int OrderInfo; + int RatingInfo; + int FixEpg; + int DisplayMessage; + int ProcessEIT; +#ifdef DEBUG + int LogLevel; +#endif + +public: + static cSetupEEPG* getInstance(); + +private: + cSetupEEPG (void); + cSetupEEPG(cSetupEEPG const&); // copy constructor is private + cSetupEEPG& operator=(cSetupEEPG const&); // assignment operator is private + static cSetupEEPG* _setupEEPG; + +}; + +#endif /* SETUPEEPG_H_ */ |