⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 debug.h

📁 OpenLdap是LDAP的开源项目
💻 H
字号:
/* * Copyright 2000, OpenLDAP Foundation, All Rights Reserved. * COPYING RESTRICTIONS APPLY, see COPYRIGHT file */#ifndef DEBUG_H#define DEBUG_H#include <iostream>#include "config.h"#define LDAP_DEBUG_NONE         0x0000#define LDAP_DEBUG_TRACE        0x0001#define LDAP_DEBUG_CONSTRUCT    0x0002#define LDAP_DEBUG_DESTROY      0x0004#define LDAP_DEBUG_PARAMETER    0x0008#define LDAP_DEBUG_ANY          0xffff #define DEBUGLEVEL LDAP_DEBUG_ANY#define PRINT_FILE	\	std::cerr << "file: " __FILE__  << " line: " << __LINE__ #ifdef WITH_DEBUG#define DEBUG(level, arg)       \    if((level) & DEBUGLEVEL){     \        std::cerr  << arg ;          \    } #else#undef DEBUG#define DEBUG(level,arg)#endif //WITH_DEBUG#endif // DEBUG_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -