Merge branch 'local-ocamlbuild' into local-trunk
[SXSI/xpathcomp.git] / hcons.mli
diff --git a/hcons.mli b/hcons.mli
deleted file mode 100644 (file)
index 888531e..0000000
--- a/hcons.mli
+++ /dev/null
@@ -1,31 +0,0 @@
-module type SA =
-  sig
-    type data
-    type t 
-    val make : data -> t
-    val node : t -> data
-    val hash : t -> int
-    val uid : t -> Uid.t
-    val equal : t -> t -> bool
-
-      
-    val with_id : Uid.t -> t
-  end
-
-module type S =
-  sig
-    type data
-    type t = private { id   : Uid.t;
-                      key  : int;
-                      node : data }
-    val make : data -> t
-    val node : t -> data
-    val hash : t -> int
-    val uid : t -> Uid.t
-    val equal : t -> t -> bool
-
-      
-    val with_id : Uid.t -> t
-  end
-
-module Make (H : Hashtbl.HashedType) : S with type data = H.t