~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/client.h

  • Committer: Brian Aker
  • Date: 2009-12-30 19:10:09 UTC
  • mfrom: (1245.2.7 remove-ilist)
  • Revision ID: brian@gaz-20091230191009-ulqzmoln5q530e6a
Merge Monty.

Show diffs side-by-side

added added

removed removed

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