sig
  type cp =
    Config_file.Raw.cp =
      String of string
    | Int of int
    | Float of float
    | List of Cam_plug.Modules_view.O.Raw.cp list
    | Tuple of Cam_plug.Modules_view.O.Raw.cp list
    | Section of (string * Cam_plug.Modules_view.O.Raw.cp) list
  val of_string : string -> Cam_plug.Modules_view.O.Raw.cp
  val to_channel :
    Pervasives.out_channel -> Cam_plug.Modules_view.O.Raw.cp -> unit
end