~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/module.h

  • Committer: Brian Aker
  • Date: 2010-07-30 06:00:36 UTC
  • mfrom: (1672.2.1 fix-plugin-loading)
  • Revision ID: brian@gaz-20100730060036-m5hatq9ch0eqtyf7
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
{
52
52
  const std::string name;
53
53
  const Manifest *manifest;
54
 
  boost::program_options::variables_map vm;
55
54
 
56
55
public:
57
56
  Library *plugin_dl;
61
60
         Library *library_arg) :
62
61
    name(manifest_arg->name),
63
62
    manifest(manifest_arg),
64
 
    vm(),
65
63
    plugin_dl(library_arg),
66
64
    isInited(false),
67
65
    system_vars(NULL)
79
77
    return *manifest;
80
78
  }
81
79
 
82
 
  const boost::program_options::variables_map &getVariableMap() const
83
 
  {
84
 
    return vm;
85
 
  }
86
 
 
87
 
  boost::program_options::variables_map &getVariableMap()
88
 
  {
89
 
    return vm;
90
 
  }
91
80
};
92
81
 
93
82
} /* namespace module */