done with scaffolding for file mailbox; next, send message to file mailbox to export and import, and handle these messages properly from the file mailbox

This commit is contained in:
2024-08-28 20:42:52 +01:00
parent e587c6cf73
commit 48c721e29b
6 changed files with 40 additions and 14 deletions

View File

@@ -2,14 +2,14 @@ signature FILE_MESSAGE =
sig
datatype t =
SAVE_TRIANGLES of AppType.triangle list
| EXPORT_FILE of AppType.triangle list
| IMPORT_FILE
| EXPORT_TRIANGLES of AppType.triangle list
| IMPORT_TRIANGLES
end
structure FileMessage :> FILE_MESSAGE =
struct
datatype t =
SAVE_TRIANGLES of AppType.triangle list
| EXPORT_FILE of AppType.triangle list
| IMPORT_FILE
| EXPORT_TRIANGLES of AppType.triangle list
| IMPORT_TRIANGLES
end