Module Config_file.Raw

module Raw: sig .. end
The type of cp freshly parsed from configuration file, not yet wrapped in their proper type.

type cp = 
| String of string (*base types, reproducing the tokens of Genlex*)
| Int of int
| Float of float
| List of cp list (*compound types*)
| Tuple of cp list
| Section of (string * cp) list
val of_string : string -> cp
A parser.
val to_channel : Pervasives.out_channel -> cp -> unit
Used to print the values into a log file for instance.