~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/command_applier.h

Cleaned up the constructor initializer lists per Brian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
{
50
50
  CommandApplier();
51
51
  CommandApplier(const CommandApplier &);
 
52
  CommandApplier& operator=(const CommandApplier &);
52
53
public:
53
54
  explicit CommandApplier(std::string name_arg) : Plugin(name_arg) {}
54
55
  virtual ~CommandApplier() {}