~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/registry_dictionary/plugins.cc

  • Committer: patrick crews
  • Date: 2010-05-20 03:29:50 UTC
  • mto: This revision was merged to the branch mainline in revision 1565.
  • Revision ID: patrick.crews@sun.com-20100520032950-7452uruysx9kb6bn
Fixed incorrectly altered test commenting to reflect the proper bug descriptions (mysqldump v. drizzledump)

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include <plugin/registry_dictionary/dictionary.h>
24
24
 
 
25
using namespace std;
25
26
using namespace drizzled;
26
27
 
27
28
PluginsTool::PluginsTool() :
36
37
PluginsTool::Generator::Generator(Field **arg) :
37
38
  plugin::TableFunction::Generator(arg)
38
39
{
39
 
  module::Registry &registry= module::Registry::singleton();
40
 
  const std::map<std::string, plugin::Plugin *> &plugin_map=
 
40
  plugin::Registry &registry= plugin::Registry::singleton();
 
41
  const map<string, plugin::Plugin *> &plugin_map=
41
42
    registry.getPluginsMap();
42
43
 
43
44
  it= plugin_map.begin();