📄 console.h
字号:
#ifndef HK_BASE_CONSOLE_H
#define HK_BASE_CONSOLE_H
class hk_Console
{
public:
virtual void printf( const char *format_string, ...);
virtual void exit(int );
virtual void flush();
static hk_Console* get_instance();
protected:
static hk_Console* m_console;
static hk_Console m_default_console_buffer;
//: just to avoid a call to malloc
};
#define hkprintf hk_Console::get_instance()->printf
#endif /* HK_BASE_CONSOLE_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -