Blame camlp4/Camlp4/Printers/Null.ml

Packit 1f8b6b
(****************************************************************************)
Packit 1f8b6b
(*                                                                          *)
Packit 1f8b6b
(*                                   OCaml                                  *)
Packit 1f8b6b
(*                                                                          *)
Packit 1f8b6b
(*                            INRIA Rocquencourt                            *)
Packit 1f8b6b
(*                                                                          *)
Packit 1f8b6b
(*  Copyright  2006   Institut National de Recherche  en  Informatique et   *)
Packit 1f8b6b
(*  en Automatique.  All rights reserved.  This file is distributed under   *)
Packit 1f8b6b
(*  the terms of the GNU Library General Public License, with the special   *)
Packit 1f8b6b
(*  exception on linking described in LICENSE at the top of the Camlp4      *)
Packit 1f8b6b
(*  source tree.                                                            *)
Packit 1f8b6b
(*                                                                          *)
Packit 1f8b6b
(****************************************************************************)
Packit 1f8b6b
Packit 1f8b6b
(* Authors:
Packit 1f8b6b
 * - Daniel de Rauglaudre: initial version
Packit 1f8b6b
 * - Nicolas Pouillard: refactoring
Packit 1f8b6b
 *)
Packit 1f8b6b
Packit 1f8b6b
module Id = struct
Packit 1f8b6b
  value name = "Camlp4.Printers.Null";
Packit 1f8b6b
  value version = Sys.ocaml_version;
Packit 1f8b6b
end;
Packit 1f8b6b
Packit 1f8b6b
module Make (Syntax : Sig.Syntax) = struct
Packit 1f8b6b
  include Syntax;
Packit 1f8b6b
Packit 1f8b6b
  value print_interf ?input_file:(_) ?output_file:(_) _ = ();
Packit 1f8b6b
  value print_implem ?input_file:(_) ?output_file:(_) _ = ();
Packit 1f8b6b
end;