~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/command_replicator.h

Some carnage. I'm sure it'll need fixed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
/**
53
53
 * Class which replicates Command messages
54
54
 */
55
 
class CommandReplicator
 
55
class CommandReplicator : public Plugin
56
56
{
 
57
  CommandReplicator();
 
58
  CommandReplicator(const CommandReplicator &);
57
59
public:
58
 
  CommandReplicator() {}
 
60
  explicit CommandReplicator(std::string name_arg) : Plugin(name_arg) {}
59
61
  virtual ~CommandReplicator() {}
60
62
  /**
61
63
   * Replicate a Command message to a CommandApplier.