~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/client.h

  • Committer: Mark Atwood
  • Date: 2011-08-12 04:08:33 UTC
  • mfrom: (2385.2.17 refactor5)
  • Revision ID: me@mark.atwood.name-20110812040833-u6j85nc6ahuc0dtz
mergeĀ lp:~olafvdspek/drizzle/refactor5

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
  virtual void store(const type::Time *from);
131
131
  virtual void store(const char *from);
132
132
  virtual void store(const char *from, size_t length)= 0;
133
 
  virtual void store(const std::string &from)
 
133
  virtual void store(str_ref from)
134
134
  {
135
 
    store(from.c_str(), from.size());
 
135
    store(from.data(), from.size());
136
136
  }
137
137
 
138
138
  /* Try to remove these. */