~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/option_map.cc

  • Committer: Lee Bieber
  • Date: 2011-03-01 17:15:47 UTC
  • mfrom: (2211.1.4 build)
  • Revision ID: kalebral@gmail.com-20110301171547-g224i2h5vvtcdam7
Merge Shrews - 726741: Do not pass FLUSH or ANALYZE through replication stream
Merge Olaf - more code refactoring
Merge Andrew - Add two new domain processes to sphinx and use in the plugin docs
Merge Patrick - 726914: Need to update dbqp randgen config files for slave_plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
#include "option_map.h"
23
23
 
24
 
 
25
 
namespace drizzled
26
 
{
27
 
namespace module
28
 
{
 
24
namespace drizzled {
 
25
namespace module {
29
26
 
30
27
namespace po= boost::program_options;
31
28
 
32
29
option_map::option_map(const std::string &module_name_in,
33
30
                       const po::variables_map &vm_in) :
34
 
  module_name(module_name_in),
35
 
  vm(vm_in)
36
 
{ }
37
 
 
38
 
option_map::option_map(const option_map &old) :
39
 
  module_name(old.module_name),
40
 
  vm(old.vm)
41
 
{ }
42
 
 
 
31
  vm(vm_in),
 
32
  module_name(module_name_in)
 
33
{ }
43
34
 
44
35
} /* namespace module */
45
36
} /* namespace drizzled */