~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/scheduler.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:
34
34
 */
35
35
class DRIZZLED_API Scheduler : public Plugin
36
36
{
37
 
  /* Disable default constructors */
38
 
  Scheduler();
39
 
  Scheduler(const Scheduler &);
40
 
  Scheduler& operator=(const Scheduler &);
41
37
public:
42
38
  explicit Scheduler(std::string name_arg)
43
39
    : Plugin(name_arg, "Scheduler")