module ReportGeneric:sig
..end
This module defines a generic output mode parametrized by an object.
class type converter =object
..end
The class type defining a generic output.
val output : (string -> unit) ->
string ->
converter ->
(string -> string) -> (string, int array) Stdlib.Hashtbl.t -> unit
output verbose file conv resolver data
writes the element for data
to file file
using conv
for data conversion, verbose
for verbose
output. resolver
associates the actual path to a given filename.