/* * Linux内核诊断工具--参数解析小函数头文件 * * Copyright (C) 2020 Alibaba Ltd. * * 作者: Baoyou Xie * * License terms: GNU General Public License (GPL) version 3 * */ #ifndef __PUB_PARAMS_PARSE_H__ #define __PUB_PARAMS_PARSE_H__ #include #include #include #include #include struct params_parser { std::map map; params_parser(std::string arg); std::string & string_value(std::string key); unsigned long int_value(std::string key); unsigned long int_value(std::string key, unsigned long def); bool bool_value(std::string key); bool bool_value(std::string key, bool def); }; #endif /* __PUB_PARAMS_PARSE_H__ */