Fix stupid bug with Tag indices
[SXSI/xpathcomp.git] / tag.mli
1 (******************************************************************************)
2 (*  SXSI : XPath evaluator                                                    *)
3 (*  Kim Nguyen (Kim.Nguyen@nicta.com.au)                                      *)
4 (*  Copyright NICTA 2008                                                      *)
5 (*  Distributed under the terms of the LGPL (see LICENCE)                     *)
6 (******************************************************************************)
7 type t
8 type pool
9
10 val attribute : t
11 val pcdata : t
12 val tag : string -> t
13 val init : pool -> unit
14 val compare : t -> t -> int
15 val equal : t -> t -> bool
16 val print : Format.formatter -> t -> unit
17 val to_string : t -> string