summaryrefslogtreecommitdiff
path: root/comm/Message.h
blob: b7d711d3126cabf6362825b3b03c530f5b9bbbf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
 *	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_ */