diff options
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 |