~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/csv/ha_tina.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:
139
139
 
140
140
static Tina *tina_engine= NULL;
141
141
 
142
 
static int tina_init_func(PluginRegistry &registry)
 
142
static int tina_init_func(drizzled::plugin::Registry &registry)
143
143
{
144
144
 
145
145
  tina_engine= new Tina(engine_name);
151
151
  return 0;
152
152
}
153
153
 
154
 
static int tina_done_func(PluginRegistry &registry)
 
154
static int tina_done_func(drizzled::plugin::Registry &registry)
155
155
{
156
156
  registry.remove(tina_engine);
157
157
  delete tina_engine;