]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/getter/tree.mli
getter with in memory tree of URIs
[helm.git] / helm / ocaml / getter / tree.mli
diff --git a/helm/ocaml/getter/tree.mli b/helm/ocaml/getter/tree.mli
new file mode 100644 (file)
index 0000000..76118a1
--- /dev/null
@@ -0,0 +1,12 @@
+type tree
+
+val empty_tree: tree
+
+val add_uri: string -> tree -> tree
+val remove_uri: string -> tree -> tree
+
+val ls_path: string -> tree -> string list
+
+val save_to_disk: string -> tree -> unit
+val load_from_disk: string -> tree
+