~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/benchmark/benchmarkudf.cc

  • Committer: Monty Taylor
  • Date: 2009-08-05 09:29:04 UTC
  • mto: (1093.1.57 captain)
  • mto: This revision was merged to the branch mainline in revision 1115.
  • Revision ID: mordred@inaugust.com-20090805092904-a26m53g5b345dtql
Renamed PluginRegistry to plugin::Registry.

Show diffs side-by-side

added added

removed removed

Lines of Context:
116
116
 
117
117
Create_function<BenchmarkFunction> benchmarkudf(string("benchmark"));
118
118
 
119
 
static int initialize(PluginRegistry &registry)
 
119
static int initialize(drizzled::plugin::Registry &registry)
120
120
{
121
121
  registry.add(&benchmarkudf);
122
122
  return 0;
123
123
}
124
124
 
125
 
static int finalize(PluginRegistry &registry)
 
125
static int finalize(drizzled::plugin::Registry &registry)
126
126
{
127
127
   registry.remove(&benchmarkudf);
128
128
   return 0;