~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/display.h

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:26:39 UTC
  • mfrom: (2157.2.2 give-in-to-pkg-config)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172639-nhy7i72sfhoq13ms
Merged in pkg-config fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
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);
33
37
 
 
38
std::string hexdump(const unsigned char *str, size_t length);
 
39
 
34
40
} /* namespace display */
35
41
} /* namespace drizzled */
36
42