123456789101112131415161718192021 |
- #ifndef AFUN_IT_INIT_INLINE_H
- #define AFUN_IT_INIT_INLINE_H
- #include "it-init.h"
- namespace aFunit {
- aFunInitInfo::aFunInitInfo(aFuntool::LogFactory &factor_,
- aFuntool::Logger &afun_logger_,
- aFuntool::Logger &core_logger_,
- aFuntool::Logger &sys_logger_) :
- InitInfo(factor_, core_logger_, sys_logger_), afun_logger{afun_logger_} {
- }
- void setAFunLogger(aFuntool::Logger *log) {
- aFunLogger = log;
- }
- }
- #endif //AFUN_IT_INIT_INLINE_H
|