?? configreader.h
字號:
/**
* File : ConfigReader.h
* Author : Kevin Lynx
* Date : 2007/8/4
*/
#ifndef _CONFIG_READER_H_
#define _CONFIG_READER_H_
#include "Singleton.h"
/**
* ConfigReader
*
* read global application config
*/
class ConfigReader : public Singleton<ConfigReader>
{
public:
/**
* Constructor
*
* init all properties
*/
ConfigReader();
/**
* Destructor
*
*/
~ConfigReader();
/**
* read
*
* read the config file
*/
bool read();
/**
* setDefault
*
*/
void setDefault();
public:
bool mbFullScreen;
unsigned int mBits;
int mDeviceType;
bool mEnableLight;
float mGlobalVolume;
};
#endif // end _CONFIG_READER_H_
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -