2021-10-06 23:39:23 +00:00
|
|
|
#ifndef COMPONENTS_FILES_CONFIGFILEPARSER_HPP
|
|
|
|
#define COMPONENTS_FILES_CONFIGFILEPARSER_HPP
|
|
|
|
|
|
|
|
#include <boost/program_options/parsers.hpp>
|
|
|
|
|
|
|
|
namespace Files
|
|
|
|
{
|
|
|
|
|
2022-09-22 18:26:05 +00:00
|
|
|
namespace bpo = boost::program_options;
|
2021-10-06 23:39:23 +00:00
|
|
|
|
2022-09-22 18:26:05 +00:00
|
|
|
template <class charT>
|
|
|
|
bpo::basic_parsed_options<charT> parse_config_file(
|
|
|
|
std::basic_istream<charT>&, const bpo::options_description&, bool allow_unregistered = false);
|
2021-10-06 23:39:23 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // COMPONENTS_FILES_CONFIGFILEPARSER_HPP
|