18 lines
359 B
C++
18 lines
359 B
C++
class CNotificationSettings
|
|
{
|
|
static void StaticRefreshSettings (CNotificationSettings * _this)
|
|
{
|
|
_this->RefreshSettings();
|
|
}
|
|
|
|
void RefreshSettings ( void );
|
|
|
|
static bool m_bInFullScreen;
|
|
|
|
protected:
|
|
CNotificationSettings();
|
|
virtual ~CNotificationSettings();
|
|
|
|
inline bool InFullScreen ( void ) const { return m_bInFullScreen; }
|
|
};
|