~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/command_replicator.h

Merge default plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
/**
47
47
 * Class which replicates Command messages
48
48
 */
49
 
class CommandReplicator
 
49
class CommandReplicator : public Plugin
50
50
{
 
51
  CommandReplicator();
 
52
  CommandReplicator(const CommandReplicator &);
 
53
  CommandReplicator& operator=(const CommandReplicator &);
51
54
public:
52
 
  CommandReplicator() {}
 
55
  explicit CommandReplicator(std::string name_arg)
 
56
   : Plugin(name_arg)
 
57
  {}
53
58
  virtual ~CommandReplicator() {}
54
59
  /**
55
60
   * Replicate a Command message to a CommandApplier.