~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/command_replicator.h

Cleaned up the constructor initializer lists per Brian.

Show diffs side-by-side

added added

removed removed

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