~ubuntu-branches/debian/sid/ocaml/sid

« back to all changes in this revision

Viewing changes to ocamldoc/odoc_args.mli

  • Committer: Bazaar Package Importer
  • Author(s): Stephane Glondu
  • Date: 2009-06-24 12:47:31 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20090624124731-7wao0d0mnk4d71ee
Remove build-dependency to docbook-* (not needed anymore, since
policy has been moved to dh-ocaml)

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
(*                                                                     *)
10
10
(***********************************************************************)
11
11
 
12
 
(* $Id: odoc_args.mli,v 1.17 2008/07/25 13:28:23 guesdon Exp $ *)
 
12
(* $Id: odoc_args.mli,v 1.17.2.1 2009/04/09 13:56:38 guesdon Exp $ *)
13
13
 
14
14
(** Analysis of the command line arguments. *)
15
15
 
22
22
(** The include_dirs in the OCaml compiler. *)
23
23
val include_dirs : string list ref
24
24
 
25
 
(** Indicate if we are in bytecode mode or not.
26
 
   (For the [ocamldoc] command).*)
27
 
val bytecode_mode : bool ref
28
 
 
29
25
(** The class type of documentation generators. *)
30
26
class type doc_generator =
31
27
  object method generate : Odoc_module.t_module list -> unit end