2
0

it-init.inline.h 562 B

123456789101112131415161718192021
  1. #ifndef AFUN_IT_INIT_INLINE_H
  2. #define AFUN_IT_INIT_INLINE_H
  3. #include "it-init.h"
  4. namespace aFunit {
  5. aFunInitInfo::aFunInitInfo(aFuntool::LogFactory &factor_,
  6. aFuntool::Logger &afun_logger_,
  7. aFuntool::Logger &core_logger_,
  8. aFuntool::Logger &sys_logger_) :
  9. InitInfo(factor_, core_logger_, sys_logger_), afun_logger{afun_logger_} {
  10. }
  11. void setAFunLogger(aFuntool::Logger *log) {
  12. aFunLogger = log;
  13. }
  14. }
  15. #endif //AFUN_IT_INIT_INLINE_H