~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/client.h

Remove PLUGIN and MODULES.

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;