qdebugloger.h
来自「BCB下的高效开发包。包含大并发的网络库」· C头文件 代码 · 共 11 行
H
11 行
//---------------------------------------------------------------------------
#ifndef QDebugLogerH
#define QDebugLogerH
#include <string>
//---------------------------------------------------------------------------
void _QDebugLogerSend(const char* Report, int Level, const char* File, int Line);
//#define QDEBUG_LOG(R,L) _QDebugLogerSend(std::string(R).c_str(),L,__FILE__,__LINE__)
#define QDEBUG_LOG(R,L) _QDebugLogerSend(R,L,__FILE__,__LINE__)
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?