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/cryptohash.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/cryptohash.h') diff --git a/src/cryptohash.h b/src/cryptohash.h index 5d83895..56dc356 100644 --- a/src/cryptohash.h +++ b/src/cryptohash.h @@ -8,7 +8,7 @@ #ifndef BU_CRYPTO_HASH_H #define BU_CRYPTO_HASH_H -#include "bu/fstring.h" +#include "bu/string.h" namespace Bu { @@ -21,12 +21,12 @@ namespace Bu virtual ~CryptoHash(); virtual void reset() = 0; - virtual void setSalt( const Bu::FString &sSalt ) = 0; + virtual void setSalt( const Bu::String &sSalt ) = 0; virtual void addData( const void *sData, int iSize ) = 0; - virtual void addData( const Bu::FString &sData ); - virtual FString getResult() = 0; + virtual void addData( const Bu::String &sData ); + virtual String getResult() = 0; virtual void writeResult( Stream &sOut ) = 0; - virtual Bu::FString getHexResult(); + virtual Bu::String getHexResult(); }; }; -- cgit v1.2.3