~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/syslog/errmsg.h

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

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
};