~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/multi_thread/multi_thread.h

  • Committer: pcrews
  • Date: 2011-05-24 17:36:24 UTC
  • mfrom: (1099.4.232 drizzle)
  • Revision ID: pcrews@lucid32-20110524173624-mwr1bvq6fa1r01ao
Updated translations + 2011.05.18 tarball tag

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
  along with this program; if not, write to the Free Software
14
14
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
15
15
 
16
 
#ifndef PLUGIN_MULTI_THREAD_MULTI_THREAD_H
17
 
#define PLUGIN_MULTI_THREAD_MULTI_THREAD_H
 
16
#pragma once
18
17
 
19
18
#include <drizzled/atomics.h>
20
19
#include <drizzled/gettext.h>
21
20
#include <drizzled/error.h>
22
21
#include <drizzled/plugin/scheduler.h>
23
 
#include "drizzled/internal/my_sys.h"
 
22
#include <drizzled/internal/my_sys.h>
24
23
#include <drizzled/sql_parse.h>
25
24
#include <string>
26
25
 
27
 
namespace drizzled {
28
 
class Session;
29
 
}
30
 
 
31
26
namespace multi_thread {
32
27
 
33
28
class MultiThreadScheduler: public drizzled::plugin::Scheduler
55
50
 
56
51
} // namespace multi_thread
57
52
 
58
 
#endif /* PLUGIN_MULTI_THREAD_MULTI_THREAD_H */