~clint-fewbar/drizzle/regex-policy-cache-limiter

« back to all changes in this revision

Viewing changes to drizzled/program_options/config_file.h

  • Committer: Clint Byrum
  • Date: 2012-03-15 18:05:43 UTC
  • mfrom: (2224.1.302 workspace)
  • Revision ID: clint@ubuntu.com-20120315180543-9jxxm4q10k3np2ws
merging with latest trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 * http://www.boost.org/LICENSE_1_0.txt)
8
8
 */
9
9
 
10
 
#ifndef DRIZZLED_PROGRAM_OPTIONS_CONFIG_FILE_H
11
 
#define DRIZZLED_PROGRAM_OPTIONS_CONFIG_FILE_H
 
10
#pragma once
12
11
 
13
12
#include <boost/program_options.hpp>
14
13
#include <boost/program_options/eof_iterator.hpp>
15
 
#include <boost/static_assert.hpp>
16
14
#include <boost/type_traits/is_same.hpp>
17
15
#include <boost/shared_ptr.hpp>
18
16
#include <boost/algorithm/string.hpp>
24
22
#include <utility>
25
23
#include <set>
26
24
 
27
 
namespace drizzled
28
 
{
29
 
namespace program_options
30
 
{
 
25
namespace drizzled {
 
26
namespace program_options {
31
27
 
32
28
typedef std::pair<std::string, std::string> option_result_pair;
33
29
std::string parse_suffix(const std::string& arg_val);
491
487
 
492
488
} /* namespace program_options */
493
489
} /* namespace drizzled */
494
 
 
495
 
#endif /* DRIZZLED_PROGRAM_OPTIONS_CONFIG_FILE_H */
496