~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/command_applier.cc

Moved service stuff into plugin/

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#include "drizzled/global.h"
21
21
 
22
22
#include "drizzled/replication_services.h"
23
 
#include "drizzled/service/command_applier.h"
 
23
#include "drizzled/plugin/command_applier.h"
24
24
 
25
25
using namespace std;
26
26
using namespace drizzled;
27
27
 
28
 
void service::CommandApplier::add(plugin::CommandApplier *applier)
 
28
void plugin::CommandApplier::add(plugin::CommandApplier *applier)
29
29
{
30
30
  ReplicationServices &replication_services= ReplicationServices::singleton();
31
31
  replication_services.attachApplier(applier);
32
32
}
33
33
 
34
 
void service::CommandApplier::remove(plugin::CommandApplier *applier)
 
34
void plugin::CommandApplier::remove(plugin::CommandApplier *applier)
35
35
{
36
36
  ReplicationServices &replication_services= ReplicationServices::singleton();
37
37
  replication_services.detachApplier(applier);