~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/client/concurrent.h

  • Committer: Mark Atwood
  • Date: 2011-06-03 17:57:03 UTC
  • mfrom: (2313.3.6 void)
  • Revision ID: me@mark.atwood.name-20110603175703-idsui337bghio245
mergeĀ lp:~olafvdspek/drizzle/void2

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#include <queue>
27
27
#include <string>
28
28
 
29
 
namespace drizzled
30
 
{
31
 
namespace plugin
32
 
{
33
 
namespace client
34
 
{
 
29
namespace drizzled {
 
30
namespace plugin {
 
31
namespace client {
35
32
 
36
33
/**
37
34
 * This class is an empty client implementation for internal used.
91
88
  virtual void sendEOF(void) {}
92
89
  virtual void sendError(const drizzled::error_t, const char*) {}
93
90
  virtual bool sendFields(List<Item>*) { return false; }
94
 
  virtual bool store(Field *) { return false; }
95
 
  virtual bool store(void) { return false; }
96
 
  virtual bool store(int32_t) { return false; }
97
 
  virtual bool store(uint32_t) { return false; }
98
 
  virtual bool store(int64_t) { return false; }
99
 
  virtual bool store(uint64_t) { return false; }
100
 
  virtual bool store(double, uint32_t, String*) { return false; }
101
 
  virtual bool store(const type::Time*) { return false; }
102
 
  virtual bool store(const char*) { return false; }
103
 
  virtual bool store(const char*, size_t) { return false; }
104
 
  virtual bool store(const std::string &) { return false; }
 
91
  virtual void store(Field *) {}
 
92
  virtual void store() {}
 
93
  virtual void store(int32_t) {}
 
94
  virtual void store(uint32_t) {}
 
95
  virtual void store(int64_t) {}
 
96
  virtual void store(uint64_t) {}
 
97
  virtual void store(double, uint32_t, String*) {}
 
98
  virtual void store(const type::Time*) {}
 
99
  virtual void store(const char*) {}
 
100
  virtual void store(const char*, size_t) {}
 
101
  virtual void store(const std::string &) {}
105
102
  virtual bool haveMoreData(void) { return false;}
106
103
  virtual bool haveError(void) { return false; }
107
104
  virtual bool wasAborted(void) { return false; }