typedef03.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 45 行
C
45 行
// Build don't link://980526 bkoz// reduced testcase for 980511 brendan qt bugclass QTextStream {public: QTextStream(); virtual ~QTextStream(); enum { skipws = 0x0001, left = 0x0002, right = 0x0004, internal = 0x0008, bin = 0x0010, oct = 0x0020, dec = 0x0040, hex = 0x0080, showbase = 0x0100, showpoint = 0x0200, uppercase = 0x0400, showpos = 0x0800, scientific= 0x1000, fixed = 0x2000 }; static const int basefield; static const int adjustfield; };typedef QTextStream QTS;const int QTS::basefield = (QTS::bin | QTS::dec | QTS::hex) ;const int QTS::adjustfield = QTS::left | QTS::right | QTS::internal;#if 0#define QTS QTextStreamconst int QTS::basefield = (QTS::bin | QTS::dec | QTS::hex) ;const int QTS::adjustfield = QTS::left | QTS::right | QTS::internal;#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?