~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/service/command_replicator.cc

Merged in slot -> service changes.

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/slot/command_replicator.h"
 
23
#include "drizzled/service/command_replicator.h"
24
24
 
25
25
using namespace std;
26
26
using namespace drizzled;
27
27
 
28
 
void slot::CommandReplicator::add(plugin::CommandReplicator *replicator)
 
28
void service::CommandReplicator::add(plugin::CommandReplicator *replicator)
29
29
{
30
30
  ReplicationServices &replication_services= ReplicationServices::singleton();
31
31
  replication_services.attachReplicator(replicator);
32
32
}
33
33
 
34
 
void slot::CommandReplicator::remove(plugin::CommandReplicator *replicator)
 
34
void service::CommandReplicator::remove(plugin::CommandReplicator *replicator)
35
35
{
36
36
  ReplicationServices &replication_services= ReplicationServices::singleton();
37
37
  replication_services.detachReplicator(replicator);