tool-logger.h 295 B

1234567891011121314
  1. #ifndef AFUN_TOOL_LOGGER_H
  2. #define AFUN_TOOL_LOGGER_H
  3. #include "aFunToolExport.h"
  4. namespace aFuntool {
  5. class Logger;
  6. extern AFUN_TOOL_EXPORT class Logger *SysLogger;
  7. static void setSysLogger(aFuntool::Logger *log) {
  8. SysLogger = log;
  9. }
  10. }
  11. #endif //AFUN_TOOL_LOGGER_H