~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/multi_thread/multi_thread.h

  • Committer: Brian Aker
  • Date: 2011-02-12 08:10:17 UTC
  • mto: This revision was merged to the branch mainline in revision 2161.
  • Revision ID: brian@tangent.org-20110212081017-7793i41ybt7gp5ty
More removal of session from includes.

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
 
#pragma once
 
16
#ifndef PLUGIN_MULTI_THREAD_MULTI_THREAD_H
 
17
#define PLUGIN_MULTI_THREAD_MULTI_THREAD_H
17
18
 
18
19
#include <drizzled/atomics.h>
19
20
#include <drizzled/gettext.h>
20
21
#include <drizzled/error.h>
21
22
#include <drizzled/plugin/scheduler.h>
22
 
#include <drizzled/internal/my_sys.h>
 
23
#include "drizzled/internal/my_sys.h"
23
24
#include <drizzled/sql_parse.h>
24
25
#include <string>
25
26
 
 
27
namespace drizzled {
 
28
class Session;
 
29
}
 
30
 
26
31
namespace multi_thread {
27
32
 
28
33
class MultiThreadScheduler: public drizzled::plugin::Scheduler
50
55
 
51
56
} // namespace multi_thread
52
57
 
 
58
#endif /* PLUGIN_MULTI_THREAD_MULTI_THREAD_H */