From f781f26a3b504704558b8fbcf73ffb8426b285fd Mon Sep 17 00:00:00 2001 From: chatty Date: Tue, 10 May 1994 09:53:40 +0000 Subject: replaced TRUE/FALSE by true/false MsgBuffer -> IOS --- comm/Message.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'comm') diff --git a/comm/Message.cc b/comm/Message.cc index c116c51..7d42248 100644 --- a/comm/Message.cc +++ b/comm/Message.cc @@ -15,6 +15,7 @@ #include "cplus_bugs.h" #include "Message.h" +#include "IOS.h" /*?class UchMessage \typ{UchMessage} is the abstract base class for messages. @@ -42,9 +43,8 @@ functions or \fun{operator $<<$}. The default implementation does nothing. ?*/ void -UchMessage :: WriteTo (UchMsgBuffer&) +UchMessage :: WriteTo (UchIOS&) { - // nothing } /*? @@ -58,7 +58,7 @@ functions or \fun{operator $>>$}. The default implementation does nothing. ?*/ void -UchMessage :: ReadFrom (UchMsgBuffer&, lword) +UchMessage :: ReadFrom (UchIOS&, lword) { } @@ -83,9 +83,9 @@ MyClient :: NewMessage (UchMsgBuffer& buffer, bool ask) if (m) { buffer.Get (m); m->Activate (*this); - return TRUE; + return true; } - return FALSE; + return false; } \end{ccode} However, this virtual function is only provided as a facility and is not used -- cgit v1.1