uioptions.h 263 B

12345678910111213
  1. #ifndef _UIOPTIONS_H
  2. #define _UIOPTIONS_H
  3. #include <api/config/items/cfgitemi.h>
  4. #define UIOPTIONS_PARENT CfgItemI
  5. class UIOptions : public UIOPTIONS_PARENT {
  6. public:
  7. UIOptions(const wchar_t *name=NULL);
  8. static void onTimerRefreshRate(int rate);
  9. };
  10. #endif