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/csvwriter.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/csvwriter.h') diff --git a/src/csvwriter.h b/src/csvwriter.h index 289d25c..8da5eee 100644 --- a/src/csvwriter.h +++ b/src/csvwriter.h @@ -8,19 +8,19 @@ #ifndef BU_CSV_WRITER_H #define BU_CSV_WRITER_H -#include "bu/fstring.h" +#include "bu/string.h" #include "bu/array.h" #include "bu/signals.h" namespace Bu { class Stream; - typedef Bu::Array StrArray; + typedef Bu::Array StrArray; class CsvWriter { public: - typedef Bu::Signal1 EncodeSignal; + typedef Bu::Signal1 EncodeSignal; enum Style { styleExcel, ///< Excel style quotes around things that need em @@ -37,8 +37,8 @@ namespace Bu Stream &sOut; EncodeSignal sEncode; - static Bu::FString encodeExcel( const Bu::FString &sIn ); - static Bu::FString encodeC( const Bu::FString &sIn ); + static Bu::String encodeExcel( const Bu::String &sIn ); + static Bu::String encodeC( const Bu::String &sIn ); }; }; -- cgit v1.2.3