aboutsummaryrefslogtreecommitdiffhomepage
path: root/ltac/tacentries.mli
diff options
context:
space:
mode:
Diffstat (limited to 'ltac/tacentries.mli')
-rw-r--r--ltac/tacentries.mli21
1 files changed, 21 insertions, 0 deletions
diff --git a/ltac/tacentries.mli b/ltac/tacentries.mli
new file mode 100644
index 000000000..3cf0bc5cc
--- /dev/null
+++ b/ltac/tacentries.mli
@@ -0,0 +1,21 @@
+(************************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2016 *)
+(* \VV/ **************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(************************************************************************)
+
+open Vernacexpr
+open Tacexpr
+
+(** Adding a tactic notation in the environment *)
+
+val add_tactic_notation :
+ locality_flag * int * grammar_tactic_prod_item_expr list * raw_tactic_expr ->
+ unit
+
+val add_ml_tactic_notation : ml_tactic_name ->
+ Tacexpr.raw_tactic_expr Egramml.grammar_prod_item list list -> unit
+
+val register_ltac : bool -> Vernacexpr.tacdef_body list -> unit