2008-09-18 03:15:49 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
class CGuiSettings
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
CGuiSettings();
|
|
|
|
virtual ~CGuiSettings();
|
|
|
|
|
2008-11-14 20:51:06 +00:00
|
|
|
static inline bool bCPURunning ( void) { return m_bCPURunning; }
|
|
|
|
static inline bool bAutoSleep ( void) { return m_bAutoSleep; }
|
2010-06-04 06:25:07 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
static void RefreshSettings (void *);
|
|
|
|
|
|
|
|
static bool m_bCPURunning;
|
|
|
|
static bool m_bAutoSleep;
|
2008-09-18 03:15:49 +00:00
|
|
|
|
2010-06-04 06:25:07 +00:00
|
|
|
static int m_RefCount;
|
|
|
|
|
2008-09-18 03:15:49 +00:00
|
|
|
};
|