~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/daemon.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:
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
   */