~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/select_subselect.h

  • Committer: Brian Aker
  • Date: 2009-09-27 21:52:36 UTC
  • mfrom: (1138.1.1 build)
  • Revision ID: brian@gaz-20090927215236-5nx5q6u1ub8uf0l6
Merge Monty (fix for distcheck)

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLED_SELECT_SUBSELECT_H
22
22
#define DRIZZLED_SELECT_SUBSELECT_H
23
23
 
24
 
namespace drizzled
25
 
{
26
24
 
27
25
/* Base subselect interface class */
28
26
class select_subselect :public select_result_interceptor
32
30
public:
33
31
  select_subselect(Item_subselect *item);
34
32
  bool send_data(List<Item> &items)=0;
35
 
  bool send_eof() { return 0; }
 
33
  bool send_eof() { return 0; };
36
34
};
37
35
 
38
 
} /* namespace drizzled */
39
 
 
40
36
#endif /* DRIZZLED_SELECT_SUBSELECT_H */