~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/registry_dictionary/plugins.cc

  • Committer: Brian Aker
  • Date: 2010-12-02 21:58:09 UTC
  • mto: This revision was merged to the branch mainline in revision 1973.
  • Revision ID: brian@tangent.org-20101202215809-761e1wk2nhyuvt9r
This is from the catalog patch (I'm pushing it up as its own little thing
just because it is fairly invasive).

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;
26
25
using namespace drizzled;
27
26
 
28
27
PluginsTool::PluginsTool() :
38
37
  plugin::TableFunction::Generator(arg)
39
38
{
40
39
  module::Registry &registry= module::Registry::singleton();
41
 
  const map<string, plugin::Plugin *> &plugin_map=
 
40
  const std::map<std::string, plugin::Plugin *> &plugin_map=
42
41
    registry.getPluginsMap();
43
42
 
44
43
  it= plugin_map.begin();