aboutsummaryrefslogtreecommitdiffhomepage
path: root/library/declare.mli
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-03-31 09:43:55 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-03-31 09:43:55 +0000
commit4c055560eca4147aafaf728bbc8d25f06c765f3f (patch)
tree0ea75dd4658f4c60d0cc7514528efd4d069053ec /library/declare.mli
parent13928db651b2edb15bd3a251c49428edb42a3ba1 (diff)
Export de l'information si un inductive est un record ou non (pour xml)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@5622 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'library/declare.mli')
-rw-r--r--library/declare.mli6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/declare.mli b/library/declare.mli
index 9b268e7ae..85162c04c 100644
--- a/library/declare.mli
+++ b/library/declare.mli
@@ -63,8 +63,8 @@ val redeclare_constant :
(* [declare_mind me] declares a block of inductive types with
their constructors in the current section; it returns the path of
- the whole block *)
-val declare_mind : mutual_inductive_entry -> object_name
+ the whole block (boolean must be true iff it is a record) *)
+val declare_mind : bool -> mutual_inductive_entry -> object_name
(* Declaration from Discharge *)
val redeclare_inductive :
@@ -99,4 +99,4 @@ val strength_of_global : global_reference -> strength
(* hooks for XML output *)
val set_xml_declare_variable : (object_name -> unit) -> unit
val set_xml_declare_constant : (bool * object_name -> unit) -> unit
-val set_xml_declare_inductive : (object_name -> unit) -> unit
+val set_xml_declare_inductive : (bool * object_name -> unit) -> unit