?? lang.hpp
字號:
// Lang.hpp
// Header File for Lang
#ifndef LANG_H
#define LANG_H
#include <string>
using namespace std ;
class Lang
{
public:
// Basic constructor
// sets the language code to be lc
Lang( string lc ) ;
// True if the language is "en"
bool isEnglish() ;
// True if the language is "zh"
bool isChinese() ;
private:
string langcode ;
} ;
#endif // LANG_H
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -