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/tcpsocket.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/tcpsocket.h') diff --git a/src/tcpsocket.h b/src/tcpsocket.h index 8543ad0..0941c65 100644 --- a/src/tcpsocket.h +++ b/src/tcpsocket.h @@ -12,7 +12,7 @@ #include "bu/config.h" #include "bu/stream.h" -#include "bu/fstring.h" +#include "bu/string.h" #include "bu/exceptionbase.h" namespace Bu @@ -61,7 +61,7 @@ namespace Bu { public: TcpSocket( int nTcpSocket ); - TcpSocket( const FString &sAddr, int nPort, int nTimeout=30, + TcpSocket( const String &sAddr, int nPort, int nTimeout=30, bool bBlocking=true ); virtual ~TcpSocket(); @@ -96,12 +96,12 @@ namespace Bu virtual void setSize( size iSize ); - Bu::FString getAddress() const; + Bu::String getAddress() const; operator int() const; virtual size getSize() const; virtual size getBlockSize() const; - virtual Bu::FString getLocation() const; + virtual Bu::String getLocation() const; private: void setAddress(); @@ -113,8 +113,8 @@ namespace Bu #endif bool bActive; bool bBlocking; - FString sReadBuf; - FString sAddress; + String sReadBuf; + String sAddress; }; } -- cgit v1.2.3