~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/scheduler.h

Cleaned up the constructor initializer lists per Brian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 */
37
37
class Scheduler : public Plugin
38
38
{
39
 
  /* Disable copy constructors */
 
39
  /* Disable default constructors */
 
40
  Scheduler();
40
41
  Scheduler(const Scheduler &);
41
42
  Scheduler& operator=(const Scheduler &);
42
43
public:
43
 
  Scheduler(std::string name_arg)
 
44
  explicit Scheduler(std::string name_arg)
44
45
    : Plugin(name_arg)
45
46
  {}
46
47
  virtual ~Scheduler() {}