unicodecharacter.h
来自「把html转成txt 把html转成txt」· C头文件 代码 · 共 28 行
H
28 行
//---------------------------------------------------------------------------#ifndef UnicodeCharacterH#define UnicodeCharacterHnamespace DoxEngine{ class UnicodeCharacter { private: long character; public: UnicodeCharacter(unsigned long initialCharacter); UnicodeCharacter(char initialCharacter); UnicodeCharacter(); void setCharacter(long newCharacter); bool isASCII(void) const; char getASCII(void) const; long unicode(void) const; };}//---------------------------------------------------------------------------#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?