~ubuntu-branches/ubuntu/edgy/psi/edgy

« back to all changes in this revision

Viewing changes to src/tools/systemwatch/systemwatch_win.h

  • Committer: Bazaar Package Importer
  • Author(s): Lucas Nussbaum
  • Date: 2006-03-28 11:11:02 UTC
  • mfrom: (2.1.2 etch)
  • Revision ID: james.westby@ubuntu.com-20060328111102-v1diqpbwqr4yijoy
Tags: 0.10-2build1
Manual sync from Debian. No Ubuntu-specific changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef SYSTEMWATCH_WIN_H
 
2
#define SYSTEMWATCH_WIN_H
 
3
 
 
4
#include "systemwatch.h"
 
5
 
 
6
class WinSystemWatch : public SystemWatchImpl
 
7
{
 
8
        Q_OBJECT
 
9
 
 
10
public:
 
11
        virtual ~WinSystemWatch();
 
12
        static WinSystemWatch* instance();
 
13
        // Win32 doesn't have an equivalent of idleSleep
 
14
 
 
15
private:
 
16
        WinSystemWatch();
 
17
        
 
18
        static WinSystemWatch* instance_;
 
19
public:
 
20
        class WinSystemWatchPrivate;
 
21
private:
 
22
        WinSystemWatchPrivate *d;
 
23
};
 
24
 
 
25
#endif