~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/ref.h

  • Committer: Joe Daly
  • Date: 2010-01-06 02:20:42 UTC
  • mto: This revision was merged to the branch mainline in revision 1267.
  • Revision ID: skinny.moey@gmail.com-20100106022042-8ov23wc4aq8f9k7d
rename hash_algorithm to algorithm

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include "drizzled/item/ident.h"
24
24
 
25
 
namespace drizzled
26
 
{
27
 
 
28
25
class Item_ref :public Item_ident
29
26
{
30
27
protected:
77
74
  String *str_result(String* tmp);
78
75
  my_decimal *val_decimal_result(my_decimal *);
79
76
  bool val_bool_result();
80
 
  bool send(plugin::Client *client, String *tmp);
 
77
  bool send(drizzled::plugin::Client *client, String *tmp);
81
78
  void make_field(SendField *field);
82
79
  bool fix_fields(Session *, Item **);
83
80
  void fix_after_pullout(Select_Lex *new_parent, Item **ref);
155
152
  }
156
153
};
157
154
 
158
 
} /* namespace drizzled */
159
 
 
160
155
#endif /* DRIZZLED_ITEM_REF_H */