blob: 079315496b53747a2e7f390dfa5ca80d34b2df8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*
* 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<char> FString;
template<> uint32_t __calcHashCode<FString>( const FString &k );
template<> bool __cmpHashKeys<FString>(
const FString &a, const FString &b );
template<typename t> void __tracer_format( const t &v );
template<> void __tracer_format<FString>( const FString &v );
}
/***** I dunno about this block, I don't really want to have it... *****
#include <ostream>
std::basic_ostream<char>& operator<< (std::basic_ostream<char> &os,
const Bu::FString &val );
*/
#endif
|