~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin_registry.cc

  • Committer: Monty Taylor
  • Date: 2009-08-05 08:52:52 UTC
  • mto: (1093.1.57 captain)
  • mto: This revision was merged to the branch mainline in revision 1115.
  • Revision ID: mordred@inaugust.com-20090805085252-27rso8llvaknwy5q
Added ListenHandler as a member of PluginRegistry.

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
  add_scheduler_factory(factory);
131
131
}
132
132
 
133
 
void PluginRegistry::add(const plugin::Listen &listen_obj)
134
 
{
135
 
  add_listen(listen_obj);
136
 
}
137
133
 
138
134
void PluginRegistry::add(plugin::Replicator *replicator)
139
135
{
185
181
  remove_scheduler_factory(factory);
186
182
}
187
183
 
188
 
void PluginRegistry::remove(const plugin::Listen &listen_obj)
189
 
{
190
 
  remove_listen(listen_obj);
191
 
}
192
184
 
193
185
void PluginRegistry::remove(plugin::Replicator *replicator)
194
186
{