~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/default_replicator/default_replicator.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:
66
66
 
67
67
static DefaultReplicator *default_replicator= NULL; /* The singleton replicator */
68
68
 
69
 
static int init(PluginRegistry &registry)
 
69
static int init(drizzled::plugin::Registry &registry)
70
70
{
71
71
  default_replicator= new DefaultReplicator();
72
72
  registry.add(default_replicator);
73
73
  return 0;
74
74
}
75
75
 
76
 
static int deinit(PluginRegistry &registry)
 
76
static int deinit(drizzled::plugin::Registry &registry)
77
77
{
78
78
  if (default_replicator)
79
79
  {