12345678910111213141516171819202122232425262728293031 |
- // *****************************************************************************
- // 版权所有(C)2023~2099 上海骄成超声波技术有限公司
- // 保留所有权利
- // *****************************************************************************
- // 作者 : 杨坚
- // 版本 : 1.0
- // 功能说明:
- // 所有日志输出合集
- // @ 添加这个类的原因:方便做屏蔽
- // *****************************************************************************
- #ifndef __JLOGALLOUTPUT_H__
- #define __JLOGALLOUTPUT_H__ 1
- #include <string>
- class JLogAllOutput
- {
- public:
- JLogAllOutput();
- /**调试输出
- */
- static void cmd_debug(const std::string& strLog, int nIndex = -1);
- static void cmd_Warning(const std::string& strLog, int nIndex = -1);
- static void cmd_error(const std::string& strLog);
- };
- #endif //__JLOGALLOUTPUT_H__
|