source: psi/trunk/src/tools/systemwatch/systemwatch_win.h

Last change on this file was 2, checked in by dmik, 19 years ago

Imported original Psi 0.10 sources from Affinix

File size: 411 bytes
Line 
1#ifndef SYSTEMWATCH_WIN_H
2#define SYSTEMWATCH_WIN_H
3
4#include "systemwatch.h"
5
6class WinSystemWatch : public SystemWatchImpl
7{
8 Q_OBJECT
9
10public:
11 virtual ~WinSystemWatch();
12 static WinSystemWatch* instance();
13 // Win32 doesn't have an equivalent of idleSleep
14
15private:
16 WinSystemWatch();
17
18 static WinSystemWatch* instance_;
19public:
20 class WinSystemWatchPrivate;
21private:
22 WinSystemWatchPrivate *d;
23};
24
25#endif
Note: See TracBrowser for help on using the repository browser.