summaryrefslogtreecommitdiff
path: root/comm/Message.h
diff options
context:
space:
mode:
authorchatty1993-04-07 11:50:31 +0000
committerchatty1993-04-07 11:50:31 +0000
commitba066c34dde204aa192d03a23a81356374d93731 (patch)
tree39391f6235d2cf8a59a0634ac5ea430cdd21f5d4 /comm/Message.h
parent05ab076e1c2a9ca16472f9a6b47b8d22914b3783 (diff)
downloadivy-league-ba066c34dde204aa192d03a23a81356374d93731.zip
ivy-league-ba066c34dde204aa192d03a23a81356374d93731.tar.gz
ivy-league-ba066c34dde204aa192d03a23a81356374d93731.tar.bz2
ivy-league-ba066c34dde204aa192d03a23a81356374d93731.tar.xz
Initial revision
Diffstat (limited to 'comm/Message.h')
-rw-r--r--comm/Message.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/comm/Message.h b/comm/Message.h
new file mode 100644
index 0000000..a254f1e
--- /dev/null
+++ b/comm/Message.h
@@ -0,0 +1,32 @@
+/*
+ * The Unix Channel
+ *
+ * by Michel Beaudouin-Lafon
+ *
+ * Copyright 1990-1993
+ * Laboratoire de Recherche en Informatique (LRI)
+ *
+ * Messages
+ *
+ * $Id$
+ * $CurLog$
+ */
+
+#ifndef Message_H_
+#define Message_H_
+
+#include "global.h"
+
+class UchMsgBuffer;
+
+class UchMessage {
+public:
+ UchMessage ();
+virtual ~UchMessage ();
+virtual void WriteTo (UchMsgBuffer&);
+virtual void ReadFrom (UchMsgBuffer&, lword);
+virtual void Activate ();
+};
+
+#endif /* Message_H_ */
+