module Configuration: sig
.. end
This module defines the contents of a configuration file.
type
value =
| |
Identifier of string |
| |
Integer of int |
| |
Float of float |
| |
String of string |
| |
And of value * value |
| |
Or of value * value |
The type of property values.
type
section = {
}
The type of a configuration section.
type
t = section list
The type of configuration file contents.
exception Exception of int * string
Exception to be raised if file loading fails.
The first parameter is the line of the error, while the second
parameter is a short description of the error.