~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_reference.h

Merge Monty - Added inter-plugin dependencies for controlling plugin load order

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 */