~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/registry_dictionary/plugins.cc

  • Committer: Brian Aker
  • Date: 2010-11-06 15:43:10 UTC
  • mfrom: (1908.1.1 merge)
  • Revision ID: brian@tangent.org-20101106154310-g1jpjzwbc53pfc4f
Filesort encapsulation, plus modification to copy contructor

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