2
0

it-init.inline.h 661 B

12345678910111213141516171819202122
  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(const std::string &base_dir_,
  6. aFuntool::LogFactory &factor_,
  7. aFuntool::Logger &afun_logger_,
  8. aFuntool::Logger &core_logger_,
  9. aFuntool::Logger &sys_logger_) :
  10. InitInfo(base_dir_, factor_, sys_logger_, sys_logger_), afun_logger{afun_logger_} {
  11. }
  12. void setAFunLogger(aFuntool::Logger *log) {
  13. aFunLogger = log;
  14. }
  15. }
  16. #endif //AFUN_IT_INIT_INLINE_H