Drizzled Public API Documentation

option_context.h
Go to the documentation of this file.
1 /* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3  *
4  * Copyright (C) 2010 Monty Taylor
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; version 2 of the License.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18  */
19 
25 #pragma once
26 
27 #include <boost/noncopyable.hpp>
28 #include <boost/program_options.hpp>
29 #include <drizzled/visibility.h>
30 #include <string>
31 
32 namespace drizzled {
33 namespace module {
34 
35 namespace po= boost::program_options;
36 
41 class DRIZZLED_API option_context : boost::noncopyable
42 {
43 public:
44 
45  option_context(const std::string &module_name_in,
46  po::options_description_easy_init po_options_in);
47 
48  option_context& operator()(const char* name,
49  const char* description);
50 
51  option_context& operator()(const char* name,
52  const po::value_semantic* s);
53 
54  option_context& operator()(const char* name,
55  const po::value_semantic* s,
56  const char* description);
57 
58  static std::string prepend_name(std::string module_name_in,
59  const char *name);
60 
61 private:
62  const std::string &module_name;
63  po::options_description_easy_init po_options;
64 };
65 
66 } /* namespace module */
67 } /* namespace drizzled */
68 
69