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/itoserver.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/itoserver.h') diff --git a/src/itoserver.h b/src/itoserver.h index 81e42cc..83e7552 100644 --- a/src/itoserver.h +++ b/src/itoserver.h @@ -14,7 +14,7 @@ #include #endif -#include "bu/fstring.h" +#include "bu/string.h" #include "bu/list.h" #include "bu/ito.h" #include "bu/itomutex.h" @@ -59,7 +59,7 @@ namespace Bu virtual ~ItoServer(); void addPort( int nPort, int nPoolSize=40 ); - void addPort( const FString &sAddr, int nPort, int nPoolSize=40 ); + void addPort( const String &sAddr, int nPort, int nPoolSize=40 ); //void scan(); void setTimeout( int nTimeoutSec, int nTimeoutUSec=0 ); @@ -82,7 +82,7 @@ namespace Bu int nTimeoutSec, int nTimeoutUSec ); virtual ~ItoClient(); - typedef ItoQueue StringQueue; + typedef ItoQueue StringQueue; StringQueue qMsg; protected: @@ -105,7 +105,7 @@ namespace Bu SrvClientLink( ItoClient *pClient ); virtual ~SrvClientLink(); - virtual void sendMessage( const Bu::FString &sMsg ); + virtual void sendMessage( const Bu::String &sMsg ); private: ItoClient *pClient; -- cgit v1.2.3