From 5b5dea3e38bccca25e5efd315186869b9918aa7d Mon Sep 17 00:00:00 2001 From: chatty Date: Mon, 13 Feb 1995 16:55:31 +0000 Subject: Receive -> Read* Emit -> Write* --- comm/OLD/TextStream.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'comm/OLD/TextStream.h') diff --git a/comm/OLD/TextStream.h b/comm/OLD/TextStream.h index 3c919f7..59a0162 100644 --- a/comm/OLD/TextStream.h +++ b/comm/OLD/TextStream.h @@ -47,18 +47,18 @@ protected: cmd_res TryPredefined (const UchTextLine&); virtual cmd_res Execute (const UchTextLine&) = 0; - void Emit (lword); - void Emit (sword); - void Emit (byte); - void Emit (char); - void Emit (const char*); + void WriteLong (lword); + void WriteShort (sword); + void WriteByte (byte); + void WriteChar (char); + void WriteString (const char*); - void Receive (lword&); - void Receive (sword&); - void Receive (byte&); - void Receive (char&); - void Receive (char*); - void Receive (CcuString&); + bool ReadLong (lword&); + bool ReadShort (sword&); + bool ReadByte (byte&); + bool ReadChar (char&); + int ReadString (char*, int); + int ReadString (CcuString&); public: -- cgit v1.1