2007-02-07 00:59:16 -08:00
|
|
|
(***********************************************************************)
|
|
|
|
(* ocamlbuild *)
|
|
|
|
(* *)
|
|
|
|
(* Nicolas Pouillard, Berke Durak, projet Gallium, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 2007 Institut National de Recherche en Informatique et *)
|
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
|
|
|
(* under the terms of the Q Public License version 1.0. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
2009-03-03 08:54:58 -08:00
|
|
|
|
2007-02-07 00:59:16 -08:00
|
|
|
(* Original author: Nicolas Pouillard *)
|
|
|
|
val of_tags : Tags.t -> Command.spec
|
|
|
|
val of_tag_list : Tags.elt list -> Command.spec
|
|
|
|
val flag : Tags.elt list -> Command.spec -> unit
|
2010-01-22 06:36:57 -08:00
|
|
|
val pflag : Tags.elt list -> string -> (string -> Command.spec) -> unit
|
2007-02-07 00:59:16 -08:00
|
|
|
val add : 'a -> 'a list -> 'a list
|
|
|
|
val remove : 'a -> 'a list -> 'a list
|
2007-02-26 09:05:30 -08:00
|
|
|
|
|
|
|
(** For system use only *)
|
|
|
|
|
|
|
|
val get_flags : unit -> (Tags.t * Command.spec) list
|