JLogAllOutput.h 807 B

12345678910111213141516171819202122232425262728293031
  1. // *****************************************************************************
  2. // 版权所有(C)2023~2099 上海骄成超声波技术有限公司
  3. // 保留所有权利
  4. // *****************************************************************************
  5. // 作者 : 杨坚
  6. // 版本 : 1.0
  7. // 功能说明:
  8. // 所有日志输出合集
  9. // @ 添加这个类的原因:方便做屏蔽
  10. // *****************************************************************************
  11. #ifndef __JLOGALLOUTPUT_H__
  12. #define __JLOGALLOUTPUT_H__ 1
  13. #include <string>
  14. class JLogAllOutput
  15. {
  16. public:
  17. JLogAllOutput();
  18. /**调试输出
  19. */
  20. static void cmd_debug(const std::string& strLog, int nIndex = -1);
  21. static void cmd_Warning(const std::string& strLog, int nIndex = -1);
  22. static void cmd_error(const std::string& strLog);
  23. };
  24. #endif //__JLOGALLOUTPUT_H__