#ifndef BU_UTF_STRING_H #define BU_UTF_STRING_H #include "bu/fbasicstring.h" namespace Bu { typedef FBasicString UtfString; template uint32_t __calcHashCode( const T &k ); template bool __cmpHashKeys( const T &a, const T &b ); template<> uint32_t __calcHashCode( const UtfString &k ); template<> bool __cmpHashKeys( const UtfString &a, const UtfString &b ); template void __tracer_format( const t &v ); template<> void __tracer_format( const UtfString &v ); } #endif