mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
469 B
C++
17 lines
469 B
C++
3 years ago
|
#ifndef COMPONENTS_FILES_CONFIGFILEPARSER_HPP
|
||
|
#define COMPONENTS_FILES_CONFIGFILEPARSER_HPP
|
||
|
|
||
|
#include <boost/program_options/parsers.hpp>
|
||
|
|
||
|
namespace Files
|
||
|
{
|
||
|
|
||
|
namespace bpo = boost::program_options;
|
||
|
|
||
|
template<class charT>
|
||
|
bpo::basic_parsed_options<charT> parse_config_file(std::basic_istream<charT>&, const bpo::options_description&,
|
||
|
bool allow_unregistered = false);
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // COMPONENTS_FILES_CONFIGFILEPARSER_HPP
|