diff options
| author | Daniil Baturin <daniil@baturin.org> | 2015-04-26 15:03:19 +0600 |
|---|---|---|
| committer | Daniil Baturin <daniil@baturin.org> | 2015-04-26 15:03:19 +0600 |
| commit | 727deb901e3090653644a135c238c2f2878a4d8e (patch) | |
| tree | 6275e0bdabdd3ba7d045d8f2dbf7d41aa275c68e /src/reference_tree.mli | |
| parent | 35bbd44f54b2738027869d67c99f55c742945a5e (diff) | |
| download | vyconf-727deb901e3090653644a135c238c2f2878a4d8e.tar.gz vyconf-727deb901e3090653644a135c238c2f2878a4d8e.zip | |
Add path validation functionality.
Diffstat (limited to 'src/reference_tree.mli')
| -rw-r--r-- | src/reference_tree.mli | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/reference_tree.mli b/src/reference_tree.mli index f588144..701adf0 100644 --- a/src/reference_tree.mli +++ b/src/reference_tree.mli @@ -9,8 +9,12 @@ type ref_node_data = { owner: string option; } +exception Validation_error of string + type t = ref_node_data Vytree.t val default_data : ref_node_data val load_from_xml : t -> string -> t + +val validate_path : (string, string) Hashtbl.t -> t -> string list -> string list * string option |
