summaryrefslogtreecommitdiff
path: root/comm/OLD/TextStream.h
diff options
context:
space:
mode:
authorchatty1995-02-13 16:55:31 +0000
committerchatty1995-02-13 16:55:31 +0000
commit5b5dea3e38bccca25e5efd315186869b9918aa7d (patch)
tree52b38255e9ba8b659eb475fdf4af652c93f247c0 /comm/OLD/TextStream.h
parentfc323560826ac24b7a66b5cd0a5621963b9d1677 (diff)
downloadivy-league-5b5dea3e38bccca25e5efd315186869b9918aa7d.zip
ivy-league-5b5dea3e38bccca25e5efd315186869b9918aa7d.tar.gz
ivy-league-5b5dea3e38bccca25e5efd315186869b9918aa7d.tar.bz2
ivy-league-5b5dea3e38bccca25e5efd315186869b9918aa7d.tar.xz
Receive -> Read*
Emit -> Write*
Diffstat (limited to 'comm/OLD/TextStream.h')
-rw-r--r--comm/OLD/TextStream.h22
1 files changed, 11 insertions, 11 deletions
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: