diff options
Diffstat (limited to 'src/utfstring.h')
| -rw-r--r-- | src/utfstring.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/utfstring.h b/src/utfstring.h new file mode 100644 index 0000000..bbacb74 --- /dev/null +++ b/src/utfstring.h | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | #ifndef BU_UTF_STRING_H | ||
| 2 | #define BU_UTF_STRING_H | ||
| 3 | |||
| 4 | #include "bu/fbasicstring.h" | ||
| 5 | |||
| 6 | namespace Bu | ||
| 7 | { | ||
| 8 | typedef FBasicString<short> UtfString; | ||
| 9 | |||
| 10 | template<typename T> | ||
| 11 | uint32_t __calcHashCode( const T &k ); | ||
| 12 | |||
| 13 | template<typename T> | ||
| 14 | bool __cmpHashKeys( const T &a, const T &b ); | ||
| 15 | |||
| 16 | template<> uint32_t __calcHashCode<UtfString>( const UtfString &k ); | ||
| 17 | template<> bool __cmpHashKeys<UtfString>( | ||
| 18 | const UtfString &a, const UtfString &b ); | ||
| 19 | |||
| 20 | template<typename t> void __tracer_format( const t &v ); | ||
| 21 | template<> void __tracer_format<UtfString>( const UtfString &v ); | ||
| 22 | } | ||
| 23 | |||
| 24 | #endif | ||
