~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/csv/ha_tina.cc

  • Committer: Brian Aker
  • Date: 2009-08-11 20:22:59 UTC
  • mfrom: (1093.1.59 captain)
  • Revision ID: brian@gaz-20090811202259-5a92huu2yqmzdx1u
MErge Jay

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;