~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/client.h

  • Committer: Brian Aker
  • Date: 2009-12-04 02:29:12 UTC
  • mto: (1237.2.7 push) (1238.1.1 push)
  • mto: This revision was merged to the branch mainline in revision 1238.
  • Revision ID: brian@gaz-20091204022912-m1bpj0y65zf7s0ud
Pass through charsets to remove dead code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include <drizzled/sql_list.h>
24
24
#include <drizzled/item.h>
25
25
 
26
 
namespace drizzled
27
 
{
28
26
class Session;
29
27
class String;
30
28
 
 
29
namespace drizzled
 
30
{
31
31
namespace plugin
32
32
{
33
33
 
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
 
  }
137
133
 
138
134
  /* Try to remove these. */
139
135
  virtual bool haveMoreData(void)= 0;
142
138
 
143
139
};
144
140
 
145
 
} /* namespace plugin */
146
 
} /* namespace drizzled */
 
141
} /* end namespace drizzled::plugin */
 
142
} /* end namespace drizzled */
147
143
 
148
144
#endif /* DRIZZLED_PLUGIN_CLIENT_H */