~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/lock.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:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#pragma once
 
20
#ifndef DRIZZLED_LOCK_H
 
21
#define DRIZZLED_LOCK_H
21
22
 
22
23
#include <vector>
23
 
#include <drizzled/thr_lock.h>
24
 
#include <drizzled/locking/global.h>
25
 
 
26
 
namespace drizzled {
 
24
#include "drizzled/thr_lock.h"
 
25
#include "drizzled/locking/global.h"
 
26
 
 
27
namespace drizzled
 
28
{
 
29
 
 
30
class Session;
 
31
class Table;
 
32
class TableList;
27
33
 
28
34
class DrizzleLock
29
35
{
89
95
 
90
96
} /* namespace drizzled */
91
97
 
 
98
#endif /* DRIZZLED_LOCK_H */