Initial commit
[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 val attribute : t
9 val pcdata : t
10 val tag : string -> t
11 val clear_pool : unit -> unit
12 val compare : t -> t -> int
13 val equal : t -> t -> bool
14 val print : Format.formatter -> t -> unit
15 val to_string : t -> string