aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics/tacentries.mli
diff options
context:
space:
mode:
Diffstat (limited to 'tactics/tacentries.mli')
-rw-r--r--tactics/tacentries.mli19
1 files changed, 19 insertions, 0 deletions
diff --git a/tactics/tacentries.mli b/tactics/tacentries.mli
new file mode 100644
index 000000000..635415b9d
--- /dev/null
+++ b/tactics/tacentries.mli
@@ -0,0 +1,19 @@
+(************************************************************************)
+(* 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