~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/rot13/rot13.cc

  • Committer: Monty Taylor
  • Date: 2010-03-06 02:08:13 UTC
  • mto: This revision was merged to the branch mainline in revision 1381.
  • Revision ID: mordred@inaugust.com-20100306020813-c37d0b39004nl1zf
Remove plugin deinit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
  return 0;
92
92
}
93
93
 
94
 
static int deinit(Context &context)
95
 
{
96
 
  context.remove(rot13_func);
97
 
  delete rot13_func;
98
 
  return 0;
99
 
}
100
 
 
101
94
} /* namespace rot13 */
102
95
 
103
 
DRIZZLE_PLUGIN(rot13::init, rot13::deinit, NULL);
 
96
DRIZZLE_PLUGIN(rot13::init, NULL);