~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field_iterator.h

Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include <drizzled/sql_list.h>
26
26
#include <drizzled/natural_join_column.h>
27
27
 
 
28
namespace drizzled
 
29
{
 
30
 
28
31
class Table;
29
32
class TableList;
30
33
 
32
35
  Iterator over the fields of a generic table reference.
33
36
*/
34
37
 
35
 
class Field_iterator: public drizzled::memory::SqlAlloc
 
38
class Field_iterator: public memory::SqlAlloc
36
39
{
37
40
public:
38
41
  Field_iterator() {}                         /* Remove gcc warning */
128
131
  Natural_join_column *get_natural_column_ref();
129
132
};
130
133
 
 
134
} /* namespace drizzled */
131
135
 
132
136
#endif /* DRIZZLED_FIELD_ITERATOR_H */