preparation for adding new additional threads/mailboxes (namely, the file mailbox)

This commit is contained in:
2024-08-28 20:11:00 +01:00
parent fb9202248c
commit e587c6cf73
8 changed files with 59 additions and 49 deletions

View File

@@ -0,0 +1,15 @@
signature FILE_MESSAGE =
sig
datatype t =
SAVE_TRIANGLES of AppType.triangle list
| EXPORT_FILE of AppType.triangle list
| IMPORT_FILE
end
structure FileMessage :> FILE_MESSAGE =
struct
datatype t =
SAVE_TRIANGLES of AppType.triangle list
| EXPORT_FILE of AppType.triangle list
| IMPORT_FILE
end