diff options
author | louis <louis.braun@gmx.de> | 2014-10-25 20:10:00 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2014-10-25 20:10:00 +0200 |
commit | 1e20f0c893b37f889269500e55f3022f450dfb04 (patch) | |
tree | 7ddb4b2838950e5b2b94e3416386423d28535e40 /views/viewhelpers.h | |
parent | ce67dea08af33f53525b61e168f32af11101e2c6 (diff) | |
download | vdr-plugin-skindesigner-1e20f0c893b37f889269500e55f3022f450dfb04.tar.gz vdr-plugin-skindesigner-1e20f0c893b37f889269500e55f3022f450dfb04.tar.bz2 |
added device info in displaychannel
Diffstat (limited to 'views/viewhelpers.h')
-rw-r--r-- | views/viewhelpers.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/views/viewhelpers.h b/views/viewhelpers.h new file mode 100644 index 0000000..d88651c --- /dev/null +++ b/views/viewhelpers.h @@ -0,0 +1,18 @@ +#ifndef __VIEWHELPERS_H +#define __VIEWHELPERS_H + +class cViewHelpers { +private: + bool devicesInit; + int* lastSignalStrength; + int* lastSignalQuality; + bool* recDevices; +protected: +public: + cViewHelpers(void); + virtual ~cViewHelpers(void); + void InitDevices(void); + bool SetDevices(bool initial, map<string,int> *intTokens, vector<map<string,string> > *devices); +}; + +#endif //__VIEWHELPERS_H
\ No newline at end of file |