~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/registry_dictionary/plugins.cc

  • Committer: Paul McCullagh
  • Date: 2010-05-26 10:17:56 UTC
  • mto: (1567.1.3 new-staging)
  • mto: This revision was merged to the branch mainline in revision 1568.
  • Revision ID: paul.mccullagh@primebase.org-20100526101756-3qdwb9id3qhog0z1
Adjust for namespace changes

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();