From f5aca1a1b402bd7ebc944dc6e6fe65828d863365 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 20 Jan 2011 02:14:08 +0000 Subject: Bu::FString is now String, and there's a shell script to fix any other programs that were using fstring, I hope. --- src/fstring.h | 53 ----------------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 src/fstring.h (limited to 'src/fstring.h') diff --git a/src/fstring.h b/src/fstring.h deleted file mode 100644 index 0f9d81a..0000000 --- a/src/fstring.h +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Copyright (C) 2007-2010 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 T &k ); - - template - bool __cmpHashKeys( const T &a, const T &b ); - - 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 ); - - bool &operator<<( bool &dst, const FString &sIn ); - uint8_t &operator<<( uint8_t &dst, const FString &sIn ); - int8_t &operator<<( int8_t &dst, const FString &sIn ); - char &operator<<( char &dst, const FString &sIn ); - uint16_t &operator<<( uint16_t &dst, const FString &sIn ); - int16_t &operator<<( int16_t &dst, const FString &sIn ); - uint32_t &operator<<( uint32_t &dst, const FString &sIn ); - int32_t &operator<<( int32_t &dst, const FString &sIn ); - uint64_t &operator<<( uint64_t &dst, const FString &sIn ); - int64_t &operator<<( int64_t &dst, const FString &sIn ); - float &operator<<( float &dst, const FString &sIn ); - double &operator<<( double &dst, const FString &sIn ); - long double &operator<<( long double &dst, const FString &sIn ); - Bu::FString &operator<<( Bu::FString &dst, const FString &sIn ); - -} - -/***** 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 -- cgit v1.2.3