~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/daemon.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:
30
30
 
31
31
class DRIZZLED_API Daemon : public Plugin
32
32
{
33
 
  Daemon();
34
 
  Daemon(const Daemon &);
35
 
  Daemon& operator=(const Daemon &);
36
33
public:
37
34
  explicit Daemon(std::string name_arg)
38
35
    : Plugin(name_arg, "Daemon")
39
36
  {}
40
37
 
41
 
  virtual ~Daemon() {}
42
 
 
43
38
  /**
44
39
   * Standard plugin system registration hooks
45
40
   */