~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/error_message.h

  • Committer: Olaf van der Spek
  • Date: 2011-08-14 17:04:01 UTC
  • mto: This revision was merged to the branch mainline in revision 2407.
  • Revision ID: olafvdspek@gmail.com-20110814170401-mk7dg2patdedfr7k
Remove unnecessary constructors and destructors

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
class DRIZZLED_API ErrorMessage : public Plugin
40
40
{
41
 
  ErrorMessage();
42
 
  ErrorMessage(const ErrorMessage &);
43
 
  ErrorMessage& operator=(const ErrorMessage &);
44
 
 
45
41
public:
46
42
  explicit ErrorMessage(std::string name_arg)
47
43
   : Plugin(name_arg, "ErrorMessage")
48
44
  {}
49
 
  virtual ~ErrorMessage() {}
50
45
 
51
46
  virtual bool errmsg(error::level_t priority, const char *format, va_list ap)=0;
52
47