diff options
Diffstat (limited to 'ide/wg_ProofView.mli')
-rw-r--r-- | ide/wg_ProofView.mli | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ide/wg_ProofView.mli b/ide/wg_ProofView.mli new file mode 100644 index 00000000..1fbf9900 --- /dev/null +++ b/ide/wg_ProofView.mli @@ -0,0 +1,19 @@ +(************************************************************************) +(* v * The Coq Proof Assistant / The Coq Development Team *) +(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2015 *) +(* \VV/ **************************************************************) +(* // * This file is distributed under the terms of the *) +(* * GNU Lesser General Public License Version 2.1 *) +(************************************************************************) + +class type proof_view = + object + inherit GObj.widget + method refresh : unit -> unit + method clear : unit -> unit + method set_goals : Interface.goals option -> unit + method set_evars : Interface.evar list option -> unit + method width : int + end + +val proof_view : unit -> proof_view |