/* * Copyright (C) 2007-2008 Xagasoft, All rights reserved. * * This file is part of the libbu++ library and is released under the * terms of the license contained in the file LICENSE. */ #ifndef BU_F_STRING_H #define BU_F_STRING_H #include "bu/fbasicstring.h" namespace Bu { typedef FBasicString FString; template<> uint32_t __calcHashCode( const FString &k ); template<> bool __cmpHashKeys( const FString &a, const FString &b ); template void __tracer_format( const t &v ); template<> void __tracer_format( const FString &v ); } /***** I dunno about this block, I don't really want to have it... ***** #include std::basic_ostream& operator<< (std::basic_ostream &os, const Bu::FString &val ); */ #endif