PowerComponentWin.h 301 B

1234567891011121314
  1. #ifndef POWERCOMPONENTWIN_H
  2. #define POWERCOMPONENTWIN_H
  3. #include "PowerComponent.h"
  4. class PowerComponentWin : public PowerComponent
  5. {
  6. public:
  7. PowerComponentWin() : PowerComponent(0) { }
  8. virtual void doDisableScreensaver();
  9. virtual void doEnableScreensaver();
  10. };
  11. #endif // POWERCOMPONENTWIN_H