summaryrefslogtreecommitdiff
path: root/src/vytree/vytree.mli
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2015-03-01 00:52:11 +0600
committerDaniil Baturin <daniil@baturin.org>2015-03-01 00:52:11 +0600
commitf201377ae801382856a44f769d396980a84184b8 (patch)
treeb23685dd10746da761b5dd2cc44622e90c7a4212 /src/vytree/vytree.mli
parent0bdfaae3f79d23c0fd560b18578043330167a2d3 (diff)
downloadvyconf-f201377ae801382856a44f769d396980a84184b8.tar.gz
vyconf-f201377ae801382856a44f769d396980a84184b8.zip
Move the source files back to src/
Splitting directories was a bit premature and unnecessary.
Diffstat (limited to 'src/vytree/vytree.mli')
-rw-r--r--src/vytree/vytree.mli19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/vytree/vytree.mli b/src/vytree/vytree.mli
deleted file mode 100644
index 1b42de7..0000000
--- a/src/vytree/vytree.mli
+++ /dev/null
@@ -1,19 +0,0 @@
-type 'a t
-
-exception Empty_path
-exception Duplicate_child
-exception Nonexistent_path
-
-val make : string -> 'a -> 'a t
-val make_full : string -> 'a -> ('a t) list -> 'a t
-
-val name_of_node : 'a t -> string
-val data_of_node : 'a t -> 'a
-val children_of_node : 'a t -> 'a t list
-
-val insert_child :
- 'a -> 'a t -> string list -> 'a -> 'a t
-
-val delete_child : 'a t -> string list -> 'a t
-
-val list_children : 'a t -> string list