~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/syslog/function.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:
23
23
#include <drizzled/item/func.h>
24
24
#include <drizzled/function/str/strfunc.h>
25
25
 
26
 
namespace drizzle_plugin
27
 
{
28
 
namespace udf
29
 
{
 
26
namespace drizzle_plugin {
 
27
namespace udf {
30
28
 
31
29
class Syslog : public drizzled::Item_str_func
32
30
{
33
31
private:
34
 
  Syslog(const Syslog&);
35
 
  Syslog& operator=(const Syslog&);
36
 
 
37
32
public:
38
33
  Syslog();
39
34