~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/client.h

  • Committer: Olaf van der Spek
  • Date: 2011-08-08 17:15:11 UTC
  • mto: This revision was merged to the branch mainline in revision 2396.
  • Revision ID: olafvdspek@gmail.com-20110808171511-ak53yodzv63leo4b
Refactor

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. */