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/csvreader.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/csvreader.h') diff --git a/src/csvreader.h b/src/csvreader.h index 9ad65fd..1c3525c 100644 --- a/src/csvreader.h +++ b/src/csvreader.h @@ -8,19 +8,19 @@ #ifndef BU_CSV_READER_H #define BU_CSV_READER_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 CsvReader { public: - typedef Bu::Signal1 DecodeSignal; + typedef Bu::Signal1 DecodeSignal; enum Style { styleExcel, ///< Excel style quotes around things that need em @@ -37,8 +37,8 @@ namespace Bu Stream &sIn; DecodeSignal sDecode; - static Bu::FString decodeExcel( Bu::FString::iterator &i ); - static Bu::FString decodeC( Bu::FString::iterator &i ); + static Bu::String decodeExcel( Bu::String::iterator &i ); + static Bu::String decodeC( Bu::String::iterator &i ); }; }; -- cgit v1.2.3