~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/util/convert.h

  • Committer: Brian Aker
  • Date: 2009-04-05 19:53:29 UTC
  • mfrom: (971.3.11 eday-dev)
  • Revision ID: brian@tangent.org-20090405195329-k2vpiwhlri9oaedq
MergeĀ fromĀ Eric.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <string>
25
25
#include <iostream>
26
26
#include <sstream>
 
27
#include <stdint.h>
27
28
 
28
29
template <class T>
29
30
std::string to_string(T t)
41
42
  return str;
42
43
}
43
44
 
 
45
extern "C"
 
46
{
 
47
  uint64_t drizzled_string_to_hex(char *to, const char *from,
 
48
                                  uint64_t from_size);
 
49
}
 
50
 
44
51
#endif