~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/error_message.h

Cleaned up the constructor initializer lists per Brian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
{
35
35
  ErrorMessage();
36
36
  ErrorMessage(const ErrorMessage &);
 
37
  ErrorMessage& operator=(const ErrorMessage &);
37
38
public:
38
 
  explicit ErrorMessage(std::string name_arg): Plugin(name_arg) {}
 
39
  explicit ErrorMessage(std::string name_arg)
 
40
   : Plugin(name_arg)
 
41
  {}
39
42
  virtual ~ErrorMessage() {}
40
43
 
41
44
  virtual bool errmsg(Session *session, int priority,