~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/structs.h

  • Committer: Olaf van der Spek
  • Date: 2011-03-28 23:48:44 UTC
  • mto: (2257.1.1 build) (2276.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2258.
  • Revision ID: olafvdspek@gmail.com-20110328234844-ufirvtasojvjsxoc
Common fwd

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include <drizzled/lex_string.h>
28
28
#include <drizzled/thr_lock.h>
29
29
 
30
 
namespace drizzled
31
 
{
32
 
 
33
 
namespace internal
34
 
{
35
 
typedef struct st_io_cache IO_CACHE;
36
 
}
37
 
 
38
 
class Table;
39
 
class Field;
 
30
namespace drizzled {
40
31
 
41
32
class KeyPartInfo 
42
33
{       /* Info about a key part */
92
83
};
93
84
 
94
85
 
95
 
class JoinTable;
96
 
 
97
86
class RegInfo 
98
87
{
99
88
public:         /* Extra info about reg */
113
102
  }
114
103
};
115
104
 
116
 
class Session;
117
 
class Cursor;
118
 
namespace optimizer { class SqlSelect; }
119
 
 
120
105
typedef int *(*update_var)(Session *, struct drizzle_show_var *);
121
106
 
122
107
} /* namespace drizzled */