~clint-fewbar/drizzle/regex-policy-cache-limiter

« back to all changes in this revision

Viewing changes to plugin/registry_dictionary/dictionary.cc

  • Committer: Clint Byrum
  • Date: 2012-03-15 18:05:43 UTC
  • mfrom: (2224.1.302 workspace)
  • Revision ID: clint@ubuntu.com-20120315180543-9jxxm4q10k3np2ws
merging with latest trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
static int init(drizzled::module::Context &context)
30
30
{
31
 
  modules= new(std::nothrow)ModulesTool;
32
 
  plugins= new(std::nothrow)PluginsTool;
 
31
  modules= new ModulesTool;
 
32
  plugins= new PluginsTool;
33
33
 
34
34
  context.add(modules);
35
35
  context.add(plugins);
43
43
  "registry_dictionary",
44
44
  "1.0",
45
45
  "Brian Aker",
46
 
  "Provides dictionary for plugin registry system.",
 
46
  N_("Dictionaries of modules and plugins"),
47
47
  PLUGIN_LICENSE_GPL,
48
 
  init,     /* Plugin Init */
49
 
  NULL,               /* depends */
50
 
  NULL                /* config options   */
 
48
  init,
 
49
  NULL,
 
50
  NULL
51
51
}
52
52
DRIZZLE_DECLARE_PLUGIN_END;