~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/service/scheduler.cc

  • Committer: Monty Taylor
  • Date: 2009-09-25 21:34:44 UTC
  • mto: This revision was merged to the branch mainline in revision 1184.
  • Revision ID: mordred@inaugust.com-20090925213444-85t13cgo4emhinnx
Cleaned up service namespacing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
#include "drizzled/gettext.h"
26
26
 
27
 
using namespace drizzled;
28
27
using namespace std;
29
28
 
 
29
namespace drizzled {
 
30
 
30
31
service::Scheduler::Scheduler() : scheduler_factory(NULL), all_schedulers() {}
31
32
service::Scheduler::~Scheduler() {}
32
33
 
78
79
  }
79
80
  return sched;
80
81
}
 
82
 
 
83
} /* namespace drizzled */