core-init.inline.h 465 B

12345678910111213141516
  1. #ifndef AFUN_CORE_INIT_INLINE_H
  2. #define AFUN_CORE_INIT_INLINE_H
  3. #include "core-init.h"
  4. namespace aFuncore {
  5. inline InitInfo::InitInfo(const std::string &base_dir_,
  6. aFuntool::LogFactory &factor_,
  7. bool log_asyn_,
  8. aFuntool::LogLevel level_) :
  9. base_dir{base_dir_}, factor{factor_}, log_asyn{log_asyn_}, level{level_} {
  10. }
  11. }
  12. #endif //AFUN_CORE_INIT_INLINE_H