~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/display.h

  • Committer: Brian Aker
  • Date: 2011-02-22 06:12:02 UTC
  • mfrom: (2190.1.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110222061202-k03czxykqy4x9hjs
List update, header fixes, multiple symbols, and David deletes some code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLED_DISPLAY_H
22
22
#define DRIZZLED_DISPLAY_H
23
23
 
24
 
#include "drizzled/common.h"
 
24
#include <drizzled/common.h>
25
25
#include <string>
26
26
 
 
27
#include <drizzled/item/func.h>
 
28
 
27
29
namespace drizzled {
28
30
namespace display {
29
31
 
 
32
const std::string &type(drizzled::Cast_target type);
 
33
const std::string &type(Item_result type);
 
34
const std::string &type(drizzled::enum_field_types type);
30
35
const std::string &type(drizzled::enum_server_command type);
31
 
const std::string &type(drizzled::enum_field_types type);
32
36
const std::string &type(bool type);
 
37
 
33
38
std::string hexdump(const unsigned char *str, size_t length);
34
39
 
35
40
} /* namespace display */