~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_reference.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:
25
25
 * used in the nested loops join implementation.
26
26
 */
27
27
 
28
 
#pragma once
 
28
#ifndef DRIZZLED_TABLE_REFERENCE_H
 
29
#define DRIZZLED_TABLE_REFERENCE_H
29
30
 
30
31
#include <drizzled/base.h>
31
 
#include <drizzled/definitions.h>
32
 
 
33
 
namespace drizzled {
 
32
#include "drizzled/definitions.h"
 
33
 
 
34
namespace drizzled
 
35
{
 
36
 
 
37
class StoredKey;
 
38
class Item;
34
39
 
35
40
struct table_reference_st
36
41
{
85
90
 
86
91
} /* namespace drizzled */
87
92
 
 
93
#endif /* DRIZZLED_TABLE_REFERENCE_H */