~hingo/drizzle/drizzle-fix-make-clean-for-docs

« back to all changes in this revision

Viewing changes to drizzled/plugin/error_message.h

  • Committer: Mark Atwood
  • Date: 2011-08-17 19:14:47 UTC
  • mfrom: (2385.3.17 rf)
  • Revision ID: me@mark.atwood.name-20110817191447-h86yzddvycd0xmof
mergeĀ lp:~olafvdspek/drizzle/refactor6

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