/* * The Unix Channel * * by Michel Beaudouin-Lafon * * Copyright 1990-1997 * Laboratoire de Recherche en Informatique (LRI) * * Messages * * $Id$ * $CurLog$ * Removed global.h */ #ifndef Message_H_ #define Message_H_ #include "cplus_bugs.h" #include "ivl/bool.h" #include "ivl/word.h" class IvlIOS; class IvlMsgStream; class IvlMessage { public: IvlMessage (); virtual ~IvlMessage (); virtual void WriteTo (IvlIOS&); virtual void ReadFrom (IvlIOS&, lword); virtual bool Activate (IvlMsgStream&, bool); }; #endif /* Message_H_ */