~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/cached_item.h

  • Committer: Monty Taylor
  • Date: 2010-02-11 01:35:55 UTC
  • mfrom: (1289 staging)
  • mto: This revision was merged to the branch mainline in revision 1293.
  • Revision ID: mordred@inaugust.com-20100211013555-f9okqsgi91mwm4xu
Merged up with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include "drizzled/sql_string.h"
25
25
#include "drizzled/my_decimal.h"
26
26
 
 
27
namespace drizzled
 
28
{
 
29
 
27
30
class Item;
28
31
class Session;
29
32
class Field;
30
33
 
31
 
class Cached_item :public drizzled::memory::SqlAlloc
 
34
class Cached_item :public memory::SqlAlloc
32
35
{
33
36
public:
34
37
  bool null_value;
89
92
 
90
93
Cached_item *new_Cached_item(Session *session, Item *item);
91
94
 
 
95
} /* namespace drizzled */
 
96
 
92
97
#endif /* DRIZZLED_CACHED_ITEM_H */