~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/common_includes.h

  • Committer: Brian Aker
  • Date: 2008-11-18 23:19:19 UTC
  • mfrom: (584.1.16 devel)
  • Revision ID: brian@tangent.org-20081118231919-w9sr347dtiwhccml
Merge of Monty's work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
/* Cross-platform portability code and standard includes */
40
40
#include <drizzled/global.h>
 
41
/* Contains system-wide constants and #defines */
 
42
#include <drizzled/definitions.h>
 
43
/* System-wide common data structures */
 
44
#include <drizzled/structs.h>
 
45
 
41
46
/* Lots of system-wide struct definitions like IO_CACHE,
42
47
   prototypes for all my_* functions */
43
48
#include <mysys/my_sys.h>
44
49
/* Custom C string functions */
45
50
#include <mystrings/m_string.h>
46
51
/* Defines for the storage engine handler -- i.e. HA_XXX defines */
47
 
#include <drizzled/base.h>                                      /* Needed by field.h */
 
52
/* Needed by field.h */
 
53
#include <drizzled/base.h>
 
54
 
48
55
/* The <strong>INTERNAL</strong> plugin API - not the external, or public, server plugin API */
49
 
#include "sql_plugin.h"
50
 
/* Contains system-wide constants and #defines */
51
 
#include <drizzled/definitions.h>
52
 
/* System-wide common data structures */
53
 
#include <drizzled/structs.h>
 
56
#include <drizzled/sql_plugin.h>
54
57
 
55
58
 
56
59
/**
73
76
#define current_session _current_session()
74
77
 
75
78
 
76
 
#include <drizzled/table_list.h>
77
 
/* Drizzle server data type class definitions */
78
 
#include <drizzled/field.h>
79
 
#include <drizzled/item.h>
80
 
 
81
 
 
82
 
#include <drizzled/sql_class.h>
83
 
 
84
 
 
85
79
#endif /* DRIZZLE_SERVER_COMMON_INCLUDES_H */