~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/registry.cc

Re-org'd the replication stuff into slots.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include "drizzled/plugin.h"
24
24
#include "drizzled/show.h"
25
25
#include "drizzled/handler.h"
26
 
#include "drizzled/replication_services.h"
27
26
 
28
27
#include <string>
29
28
#include <vector>
83
82
  add_storage_engine(engine);
84
83
}
85
84
 
86
 
void plugin::Registry::add(plugin::CommandReplicator *replicator)
87
 
{
88
 
  add_replicator(replicator);
89
 
}
90
 
 
91
 
void plugin::Registry::add(plugin::CommandApplier *applier)
92
 
{
93
 
  add_applier(applier);
94
 
}
95
 
 
96
85
void plugin::Registry::remove(StorageEngine *engine)
97
86
{
98
87
  remove_storage_engine(engine);
99
88
}
100
89
 
101
 
void plugin::Registry::remove(plugin::CommandReplicator *replicator)
102
 
{
103
 
  remove_replicator(replicator);
104
 
}
105
 
 
106
 
void plugin::Registry::remove(plugin::CommandApplier *applier)
107
 
{
108
 
  remove_applier(applier);
109
 
}
110
 
 
111
90
} /* namespace drizzled */