vdr-plugin-skindesigner/views/viewhelpers.h

18 lines
413 B
C
Raw Normal View History

2014-10-25 20:10:00 +02:00
#ifndef __VIEWHELPERS_H
#define __VIEWHELPERS_H
class cViewHelpers {
2014-10-25 20:10:00 +02:00
private:
bool devicesInit;
int* lastSignalStrength;
int* lastSignalQuality;
bool* recDevices;
protected:
void InitDevices(void);
bool SetDevices(bool initial, map<string,int> *intTokens, vector<map<string,string> > *devices);
2014-10-25 20:10:00 +02:00
public:
cViewHelpers(void);
virtual ~cViewHelpers(void);
};
#endif //__VIEWHELPERS_H