diff options
Diffstat (limited to 'src/config_tree.mli')
-rw-r--r-- | src/config_tree.mli | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/config_tree.mli b/src/config_tree.mli index 27042f8..ac9c5a9 100644 --- a/src/config_tree.mli +++ b/src/config_tree.mli @@ -5,7 +5,7 @@ exception Node_has_no_value type config_node_data = { values : string list; - comment : string; + comment : string option; } type t = config_node_data Vytree.t @@ -21,3 +21,7 @@ val delete : t -> string list -> string option -> t val get_values : t -> string list -> string list val get_value : t -> string list -> string + +val set_comment : t -> string list -> string option -> t + +val get_comment : t -> string list -> string option |