Theory presentation (fake implementation);
authorwenzelm
Wed, 03 Feb 1999 17:23:04 +0100
changeset 6203 328b4377755c
parent 6202 7306d37f7929
child 6204 c7ad5b27894f
Theory presentation (fake implementation);
src/Pure/Thy/present.ML
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/Pure/Thy/present.ML	Wed Feb 03 17:23:04 1999 +0100
@@ -0,0 +1,28 @@
+(*  Title:      Pure/Thy/present.ML
+    ID:         $Id$
+    Author:     Markus Wenzel, TU Muenchen
+
+Theory presentation.            (* FIXME fake implementation *)
+*)
+
+signature BASIC_PRESENT =
+sig
+  val section: string -> unit
+end;
+
+signature PRESENT =
+sig
+  include BASIC_PRESENT
+  val thm: string -> thm -> unit
+end;
+
+structure Present: PRESENT =
+struct
+
+fun section _ = ();
+fun thm _ _ = ();
+
+end;
+
+structure BasicPresent: BASIC_PRESENT = Present;
+open BasicPresent;