123456789101112131415161718 |
- #ifndef AFUN_RT_INIT_INLINE_H
- #define AFUN_RT_INIT_INLINE_H
- #include "rt-init.h"
- namespace aFunrt {
- inline aFunInitInfo::aFunInitInfo(const std::string &base_dir_,
- aFuntool::LogFactory &factor_,
- bool log_asyn_,
- aFuntool::LogLevel core_level_,
- aFuntool::LogLevel lang_level_) :
- InitInfo(base_dir_, factor_, log_asyn_, core_level_), lang_level{lang_level_} {
- }
- }
- #endif //AFUN_RT_INIT_INLINE_H
|