~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/util/data_ref.h

  • Committer: Olaf van der Spek
  • Date: 2011-10-22 13:10:53 UTC
  • mto: This revision was merged to the branch mainline in revision 2447.
  • Revision ID: olafvdspek@gmail.com-20111022131053-b5ihev4dymuovcj2
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
96
96
  {
97
97
    return begin() == end();
98
98
  }
 
99
 
 
100
  operator std::string() const
 
101
  {
 
102
    return to_string(*this);
 
103
  }
99
104
private:
100
105
  T begin_;
101
106
  T end_;