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/httpget.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/httpget.h') diff --git a/src/httpget.h b/src/httpget.h index 783f880..58982c0 100644 --- a/src/httpget.h +++ b/src/httpget.h @@ -9,7 +9,7 @@ #define BU_HTTP_GET_H #include "bu/stream.h" -#include "bu/fstring.h" +#include "bu/string.h" #include "bu/url.h" #include "bu/tcpsocket.h" #include "bu/hash.h" @@ -19,7 +19,7 @@ namespace Bu class HttpGet : public Bu::Stream { public: - HttpGet( const Bu::Url &uSrc, const Bu::FString &sMethod="GET" ); + HttpGet( const Bu::Url &uSrc, const Bu::String &sMethod="GET" ); virtual ~HttpGet(); void get(); @@ -51,9 +51,9 @@ namespace Bu private: Bu::Url uSrc; - Bu::FString sMethod; + Bu::String sMethod; Bu::TcpSocket sSrv; - typedef Bu::Hash MimeHash; + typedef Bu::Hash MimeHash; MimeHash hMimeIn; MimeHash hMimeOut; }; -- cgit v1.2.3