~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/program_options/config_file.h

  • Committer: Mark Atwood
  • Date: 2011-07-07 02:23:07 UTC
  • mfrom: (2318.6.116 refactor18)
  • Revision ID: me@mark.atwood.name-20110707022307-4db00nqaaczzc3jv
mergeĀ lp:~olafvdspek/drizzle/refactor18

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
#include <boost/program_options.hpp>
13
13
#include <boost/program_options/eof_iterator.hpp>
14
 
#include <boost/static_assert.hpp>
15
14
#include <boost/type_traits/is_same.hpp>
16
15
#include <boost/shared_ptr.hpp>
17
16
#include <boost/algorithm/string.hpp>
23
22
#include <utility>
24
23
#include <set>
25
24
 
26
 
namespace drizzled
27
 
{
28
 
namespace program_options
29
 
{
 
25
namespace drizzled {
 
26
namespace program_options {
30
27
 
31
28
typedef std::pair<std::string, std::string> option_result_pair;
32
29
std::string parse_suffix(const std::string& arg_val);
490
487
 
491
488
} /* namespace program_options */
492
489
} /* namespace drizzled */
493
 
 
494