~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/display.h

fixed build warnings

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