~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_string.h

  • Committer: Olaf van der Spek
  • Date: 2011-03-28 23:02:08 UTC
  • mto: (2257.1.1 build) (2276.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2258.
  • Revision ID: olafvdspek@gmail.com-20110328230208-v5ik8zxd506upo7n
Common fwd

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
#define NOT_FIXED_DEC                   (uint8_t)31
35
35
#endif
36
36
 
37
 
namespace drizzled
38
 
{
39
 
 
40
 
class String;
41
 
struct charset_info_st;
 
37
namespace drizzled {
42
38
 
43
39
extern DRIZZLED_API String my_empty_string;
44
40
extern const String my_null_string;
45
 
namespace memory { class Root; }
46
41
 
47
42
DRIZZLED_API std::string String_to_std_string(String const& s);
48
43
DRIZZLED_API String* set_String_from_std_string(String* s, std::string const& cs);