Skip to content

Commit

Permalink
fixup includes in commandline_options
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeck88 committed Jun 25, 2014
1 parent 3e07048 commit 198b89b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 12 deletions.
22 changes: 16 additions & 6 deletions src/commandline_options.cpp
Expand Up @@ -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;

Expand Down
12 changes: 6 additions & 6 deletions src/commandline_options.hpp
Expand Up @@ -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
{
Expand Down

0 comments on commit 198b89b

Please sign in to comment.