~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/cache_row.h

  • Committer: Monty Taylor
  • Date: 2009-02-08 10:59:43 UTC
  • mto: This revision was merged to the branch mainline in revision 852.
  • Revision ID: mordred@inaugust.com-20090208105943-e30tagctq2nrghxi
Renamed my_net_* to drizzleclient_net_* to help with namespace issues.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_ITEM_CACHE_ROW_H
21
21
#define DRIZZLED_ITEM_CACHE_ROW_H
22
22
 
 
23
#include <stdint.h>
23
24
#include <drizzled/item/cache.h>
24
25
 
25
 
namespace drizzled
26
 
{
27
 
 
28
26
class Item_cache;
29
27
class Item;
30
 
class SendField;
 
28
class Send_field;
31
29
 
32
30
class Item_cache_row: public Item_cache
33
31
{
51
49
  bool setup(Item *item);
52
50
  void store(Item *item);
53
51
  void illegal_method_call(const char * method_name);
54
 
  void make_field(SendField *field);
 
52
  void make_field(Send_field *field);
55
53
  double val_real();
56
54
  int64_t val_int();
57
55
  String *val_str(String *val);
70
68
 
71
69
};
72
70
 
73
 
} /* namespace drizzled */
74
 
 
75
71
#endif /* DRIZZLED_ITEM_CACHE_ROW_H */