~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/lex_symbol.h

  • Committer: Monty Taylor
  • Date: 2009-03-06 03:33:24 UTC
  • mfrom: (916.1.2 merge)
  • Revision ID: mordred@inaugust.com-20090306033324-dcedf80g9qzywbvu
Merged Brian's merge... re-rotate the tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
/* This struct includes all reserved words and functions */
22
22
 
23
 
#ifndef DRIZZLED_LEX_SYMBOL_H
24
 
#define DRIZZLED_LEX_SYMBOL_H
25
 
 
26
 
namespace drizzled
27
 
{
 
23
#ifndef _lex_symbol_h
 
24
#define _lex_symbol_h
28
25
 
29
26
typedef struct st_sym_group {
30
27
  const char *name;
43
40
  uint32_t   length;
44
41
} LEX_SYMBOL;
45
42
 
 
43
 
46
44
extern SYM_GROUP sym_group_common;
47
45
extern SYM_GROUP sym_group_geom;
48
46
extern SYM_GROUP sym_group_rtree;
49
47
 
50
 
} /* namespace drizzled */
51
48
 
52
 
#endif /* DRIZZLED_LEX_SYMBOL_H */
 
49
#endif /* _lex_symbol_h */