summaryrefslogtreecommitdiff
path: root/ide/command_windows.mli
diff options
context:
space:
mode:
Diffstat (limited to 'ide/command_windows.mli')
-rw-r--r--ide/command_windows.mli22
1 files changed, 22 insertions, 0 deletions
diff --git a/ide/command_windows.mli b/ide/command_windows.mli
new file mode 100644
index 00000000..014be777
--- /dev/null
+++ b/ide/command_windows.mli
@@ -0,0 +1,22 @@
+(************************************************************************)
+(* 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 *)
+(************************************************************************)
+
+(* $Id: command_windows.mli,v 1.1.2.1 2004/07/16 19:30:19 herbelin Exp $ *)
+
+class command_window :
+ unit ->
+ object
+ method new_command : ?command:string -> ?term:string -> unit -> unit
+ method window : GWindow.window
+ end
+
+val main : unit -> unit
+
+val command_window : unit -> command_window
+
+