~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/syslog/errmsg.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:
33
33
  int _facility;
34
34
  int _priority;
35
35
 
36
 
  Syslog();
37
 
  Syslog(const Syslog&);
38
 
  Syslog& operator=(const Syslog&);
39
 
 
40
36
public:
41
 
  explicit Syslog(const std::string& facility,
42
 
                  const std::string& priority);
 
37
  explicit Syslog(const std::string& facility, const std::string& priority);
43
38
 
44
39
  virtual bool errmsg(drizzled::error::level_t, const char *format, va_list ap);
45
40
};