~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-13 18:28:03 UTC
  • mfrom: (2433.1.5 rf1)
  • Revision ID: me@mark.atwood.name-20111013182803-pbmb3r5emfxfrbvy
mergeĀ lp:~olafvdspek/drizzle/refactor2

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
public:
28
28
  data_ref_basic()
29
29
  {
 
30
    clear();
30
31
  }
31
32
 
32
33
  template <class U>
53
54
    assign(b, strlen(b));
54
55
  }
55
56
 
56
 
  const data_ref_basic& clear()
 
57
  void clear()
57
58
  {
58
59
    begin_ = NULL;
59
60
    end_ = NULL;
60
 
    return *this;
61
61
  }
62
62
 
63
63
  void assign(const void* b, const void* e)