~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/basic_constant.h

  • Committer: Monty Taylor
  • Date: 2009-01-06 18:46:25 UTC
  • mto: This revision was merged to the branch mainline in revision 762.
  • Revision ID: mordred@inaugust.com-20090106184625-kqu7nsnwjwm5jv4s
Enabled dirty_close.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include <drizzled/item.h>
24
24
 
25
 
namespace drizzled
26
 
{
27
 
 
28
25
class Item_basic_constant :public Item
29
26
{
30
27
public:
31
 
  Item_basic_constant() : Item() {}
32
 
 
33
28
  /* to prevent drop fixed flag (no need parent cleanup call) */
34
29
  void cleanup()
35
30
  {
43
38
  }
44
39
};
45
40
 
46
 
} /* namespace drizzled */
47
 
 
48
41
#endif /* DRIZZLED_ITEM_BASIC_CONSTANT_H */