~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/cache.h

  • Committer: Monty Taylor
  • Date: 2009-12-14 22:00:27 UTC
  • mto: (1241.9.10 out-of-tree)
  • mto: This revision was merged to the branch mainline in revision 1250.
  • Revision ID: mordred@inaugust.com-20091214220027-kpmfbl452nctzc0g
pandora-build v0.85 - Fixed C++ standard setting.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include "drizzled/item/ident.h"
24
24
#include "drizzled/item/field.h"
25
25
#include "drizzled/item/basic_constant.h"
26
 
#include "drizzled/util/test.h"
27
 
 
28
 
namespace drizzled
29
 
{
30
26
 
31
27
class Item_cache: public Item_basic_constant
32
28
{
82
78
  {
83
79
    return this == item;
84
80
  }
85
 
  bool basic_const_item() const
86
 
  {
87
 
    return test(example && example->basic_const_item());
88
 
  }
89
81
};
90
82
 
91
 
} /* namespace drizzled */
92
 
 
93
83
#endif /* DRIZZLED_ITEM_CACHE_H */