summaryrefslogtreecommitdiff
path: root/toplevel/whelp.mli
diff options
context:
space:
mode:
Diffstat (limited to 'toplevel/whelp.mli')
-rw-r--r--toplevel/whelp.mli24
1 files changed, 24 insertions, 0 deletions
diff --git a/toplevel/whelp.mli b/toplevel/whelp.mli
new file mode 100644
index 00000000..f3f7408a
--- /dev/null
+++ b/toplevel/whelp.mli
@@ -0,0 +1,24 @@
+(************************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * CNRS-Ecole Polytechnique-INRIA Futurs-Universite Paris Sud *)
+(* \VV/ **************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(************************************************************************)
+
+(*i $Id: whelp.mli 7837 2006-01-11 09:47:32Z herbelin $ i*)
+
+(* Coq interface to the Whelp query engine developed at
+ the University of Bologna *)
+
+open Names
+open Term
+open Topconstr
+open Environ
+
+type whelp_request =
+ | Locate of string
+ | Elim of inductive
+ | Constr of string * constr
+
+val whelp : whelp_request -> unit