summaryrefslogtreecommitdiff
path: root/comm/Message.h
blob: c838286114d9bc2062db997b9dce0e69aad83c63 (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
/*
 *	The Unix Channel
 *
 *	by Michel Beaudouin-Lafon
 *
 *	Copyright 1990-1997
 *	Laboratoire de Recherche en Informatique (LRI)
 *
 *	Messages
 *
 *	$Id$
 *	$CurLog$
 */

#ifndef Message_H_
#define Message_H_

#include "cplus_bugs.h"
#include "ccu/bool.h"
#include "ccu/word.h"
class UchIOS;
class UchMsgStream;

class UchMessage {
public:
		UchMessage ();
virtual		~UchMessage ();
virtual	void	WriteTo (UchIOS&);
virtual	void	ReadFrom (UchIOS&, lword);
virtual	bool	Activate (UchMsgStream&, bool);
};

#endif /* Message_H_ */