~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/display.h

Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#ifndef DRIZZLED_DISPLAY_H
22
 
#define DRIZZLED_DISPLAY_H
 
21
#pragma once
23
22
 
24
 
#include "drizzled/common.h"
 
23
#include <drizzled/common.h>
25
24
#include <string>
26
25
 
 
26
#include <drizzled/item/func.h>
 
27
 
27
28
namespace drizzled {
28
29
namespace display {
29
30
 
 
31
const std::string &type(drizzled::Cast_target type);
 
32
const std::string &type(Item_result type);
 
33
const std::string &type(drizzled::enum_field_types type);
30
34
const std::string &type(drizzled::enum_server_command type);
31
 
const std::string &type(drizzled::enum_field_types type);
32
35
const std::string &type(bool type);
 
36
 
33
37
std::string hexdump(const unsigned char *str, size_t length);
34
38
 
35
39
} /* namespace display */
36
40
} /* namespace drizzled */
37
41
 
38
 
#endif /* DRIZZLED_DISPLAY_H */