From bdf4adcfb3fe40dc16f8dadde4da416cc8a5b8d2 Mon Sep 17 00:00:00 2001 From: chatty Date: Tue, 10 May 1994 09:51:33 +0000 Subject: Removed useless default constructor replaced TRUE/FALSE by true/false --- comm/Datagram.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'comm/Datagram.h') diff --git a/comm/Datagram.h b/comm/Datagram.h index 3ac6b36..954f1e2 100644 --- a/comm/Datagram.h +++ b/comm/Datagram.h @@ -21,9 +21,9 @@ class UchDatagram : public UchSocket { protected: pUchAddress FAddr; + public: - UchDatagram (); - UchDatagram (UchAddress*, UchAddress*); + UchDatagram (UchAddress* = 0, UchAddress* = 0); ~UchDatagram (); UchDatagram (const UchDatagram& d); UchChannel* Copy () const; @@ -32,9 +32,9 @@ public: int Receive (byte*, int); inline UchAddress* From () { return FAddr; } int Reply (byte*, int); - int Send (UchMsgBuffer& b, UchAddress& a, bool = FALSE); + int Send (UchMsgBuffer& b, UchAddress& a, bool = false); int Receive (UchMsgBuffer& b); - int Reply (UchMsgBuffer& b, bool = FALSE); + int Reply (UchMsgBuffer& b, bool = false); }; #endif /* Datagram_H_ */ -- cgit v1.1