fixup includes in commandline_options
This commit is contained in:
parent
3e07048530
commit
198b89b61f
2 changed files with 22 additions and 12 deletions
|
@ -13,13 +13,23 @@
|
|||
*/
|
||||
|
||||
#include "commandline_options.hpp"
|
||||
#include "serialization/string_utils.hpp"
|
||||
#include "util.hpp"
|
||||
#include "lua/llimits.h"
|
||||
#include "log.hpp"
|
||||
#include "global.hpp"
|
||||
|
||||
#include <boost/any.hpp> // for any
|
||||
#include <boost/foreach.hpp> // for auto_any_base, etc
|
||||
#include <boost/program_options/cmdline.hpp>
|
||||
#include <boost/program_options/errors.hpp> // for validation_error, etc
|
||||
#include <boost/program_options/parsers.hpp>
|
||||
#include <boost/program_options/positional_options.hpp>
|
||||
#include <boost/program_options/value_semantic.hpp> // for value, etc
|
||||
#include <boost/program_options/variables_map.hpp> // for variables_map, etc
|
||||
#include <boost/version.hpp> // for BOOST_VERSION
|
||||
#include <iostream> // for operator<<, basic_ostream, etc
|
||||
#include <sstream> // for basic_stringbuf<>::int_type, etc
|
||||
#include "log.hpp" // for logger, set_strict_severity, etc
|
||||
#include "serialization/string_utils.hpp" // for split
|
||||
#include "util.hpp" // for lexical_cast
|
||||
|
||||
#include <boost/version.hpp>
|
||||
#include <boost/foreach.hpp>
|
||||
|
||||
namespace po = boost::program_options;
|
||||
|
||||
|
|
|
@ -15,12 +15,12 @@
|
|||
#ifndef COMMANDLINE_OPTIONS_HPP_INCLUDED
|
||||
#define COMMANDLINE_OPTIONS_HPP_INCLUDED
|
||||
|
||||
#include <boost/optional.hpp>
|
||||
#include <boost/program_options.hpp>
|
||||
#include <boost/tuple/tuple.hpp>
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <boost/optional.hpp> // for optional
|
||||
#include <boost/program_options/options_description.hpp>
|
||||
#include <boost/tuple/tuple.hpp> // for tuple
|
||||
#include <iosfwd> // for ostream
|
||||
#include <string> // for string
|
||||
#include <vector> // for vector
|
||||
|
||||
class commandline_options
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue