Fix the build script.
[tatoo.git] / src / utils / qNameSet.mli
1 (***********************************************************************)
2 (*                                                                     *)
3 (*                               TAToo                                 *)
4 (*                                                                     *)
5 (*                     Kim Nguyen, LRI UMR8623                         *)
6 (*                   Université Paris-Sud & CNRS                       *)
7 (*                                                                     *)
8 (*  Copyright 2010-2012 Université Paris-Sud and Centre National de la *)
9 (*  Recherche Scientifique. All rights reserved.  This file is         *)
10 (*  distributed under the terms of the GNU Lesser General Public       *)
11 (*  License, with the special exception on linking described in file   *)
12 (*  ../LICENSE.                                                        *)
13 (*                                                                     *)
14 (***********************************************************************)
15
16 (*
17   Time-stamp: <Last modified on 2013-03-09 17:53:53 CET by Kim Nguyen>
18 *)
19
20 (** Implementation of sets of Qualified Names that can be finite
21     or cofinite *)
22
23 include FiniteCofinite.S with type elt = QName.t
24 include Common_sig.Printable with type t := t
25 val star : t
26 val text : t
27 val node : t
28
29 module Weak :
30 sig
31   include FiniteCofinite.S with type elt = QName.t
32   include Common_sig.Printable with type t := t
33   val star : t
34   val text : t
35   val node : t
36 end