it-init.inline.h 568 B

123456789101112131415161718
  1. #ifndef AFUN_IT_INIT_INLINE_H
  2. #define AFUN_IT_INIT_INLINE_H
  3. #include "it-init.h"
  4. namespace aFunit {
  5. inline aFunInitInfo::aFunInitInfo(const std::string &base_dir_,
  6. aFuntool::LogFactory &factor_,
  7. bool log_asyn_,
  8. aFuntool::LogLevel core_level_,
  9. aFuntool::LogLevel lang_level_) :
  10. InitInfo(base_dir_, factor_, log_asyn_, core_level_), lang_level{lang_level_} {
  11. }
  12. }
  13. #endif //AFUN_IT_INIT_INLINE_H