~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/int_with_ref.h

  • Committer: Brian Aker
  • Date: 2009-01-24 09:43:35 UTC
  • Revision ID: brian@gir-3.local-20090124094335-6qdtvc35gl5fvivz
Adding in an example singe thread scheduler

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
*/
31
31
 
32
 
namespace drizzled
33
 
{
34
 
 
35
32
class Item_int_with_ref :public Item_int
36
33
{
37
34
  Item *ref;
47
44
  }
48
45
  Item *clone_item();
49
46
  virtual Item *real_item() { return ref; }
50
 
  virtual const Item *real_item() const { return ref; }
51
47
};
52
48
 
53
 
} /* namespace drizzled */
54
 
 
55
49
#endif /* DRIZZLED_ITEM_INT_WITH_REF_H */