~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/util/data_ref.h

  • Committer: Mark Atwood
  • Date: 2011-10-25 19:08:35 UTC
  • mfrom: (2445.1.6 rf)
  • Revision ID: me@mark.atwood.name-20111025190835-g21cn911ypxjd5fi
mergeĀ lp:~olafvdspek/drizzle/refactor7

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_;