~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/null_client.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:
20
20
#pragma once
21
21
 
22
22
#include <drizzled/plugin/client.h>
23
 
#include<boost/tokenizer.hpp>
 
23
#include <boost/tokenizer.hpp>
24
24
#include <vector>
25
25
#include <queue>
26
26
#include <string>
27
27
 
28
 
namespace drizzled
29
 
{
30
 
namespace plugin
31
 
{
 
28
namespace drizzled {
 
29
namespace plugin {
32
30
 
33
31
/**
34
32
 * This class is an empty client implementation for internal used.
91
89
  virtual void sendEOF(void) {}
92
90
  virtual void sendError(const drizzled::error_t, const char*) {}
93
91
  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; }
 
92
  virtual void store(Field *) {}
 
93
  virtual void store(void) {}
 
94
  virtual void store(int32_t) {}
 
95
  virtual void store(uint32_t) {}
 
96
  virtual void store(int64_t) {}
 
97
  virtual void store(uint64_t) {}
 
98
  virtual void store(double, uint32_t, String*) {}
 
99
  virtual void store(const type::Time*) {}
 
100
  virtual void store(const char*) {}
 
101
  virtual void store(const char*, size_t) {}
 
102
  virtual void store(const std::string &) {}
105
103
  virtual bool haveMoreData(void) { return false;}
106
104
  virtual bool haveError(void) { return false; }
107
105
  virtual bool wasAborted(void) { return false; }