8 lines
237 B
Standard ML
8 lines
237 B
Standard ML
|
|
signature UPDATE_MESSAGE =
|
||
|
|
sig
|
||
|
|
datatype t = DRAW of DrawMessage.t | FILE of FileMessage.t | NO_MAILBOX
|
||
|
|
end
|
||
|
|
|
||
|
|
structure UpdateMessage :> UPDATE_MESSAGE =
|
||
|
|
struct datatype t = DRAW of DrawMessage.t | FILE of FileMessage.t | NO_MAILBOX end
|