~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/structs.h

  • Committer: Lee Bieber
  • Date: 2011-03-29 22:31:41 UTC
  • mfrom: (2257.1.3 build)
  • Revision ID: kalebral@gmail.com-20110329223141-yxc22h3l2he58sk0
Merge Andrew - 743842: Build failure using GCC 4.6
Merge Stewart - 738022: CachedDirectory silently fails to add entries if stat() fails
Merge Olaf - Common fwd: add copyright, add more declaration

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