summaryrefslogtreecommitdiff
path: root/comm/OLD/TextStream.h
diff options
context:
space:
mode:
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: