6203
|
1 |
(* Title: Pure/Thy/present.ML
|
|
2 |
ID: $Id$
|
|
3 |
Author: Markus Wenzel, TU Muenchen
|
|
4 |
|
|
5 |
Theory presentation. (* FIXME fake implementation *)
|
|
6 |
*)
|
|
7 |
|
|
8 |
signature BASIC_PRESENT =
|
|
9 |
sig
|
|
10 |
val section: string -> unit
|
|
11 |
end;
|
|
12 |
|
|
13 |
signature PRESENT =
|
|
14 |
sig
|
|
15 |
include BASIC_PRESENT
|
6274
|
16 |
val init: bool -> string list -> string list -> string -> string -> unit
|
|
17 |
val finish: unit -> unit
|
|
18 |
val theory_file: string -> string -> unit
|
6203
|
19 |
val thm: string -> thm -> unit
|
|
20 |
end;
|
|
21 |
|
|
22 |
structure Present: PRESENT =
|
|
23 |
struct
|
|
24 |
|
6274
|
25 |
fun init _ _ _ _ _ = ();
|
|
26 |
fun finish _ = ();
|
|
27 |
|
6203
|
28 |
fun section _ = ();
|
6274
|
29 |
fun theory_file _ _ = ();
|
6203
|
30 |
fun thm _ _ = ();
|
|
31 |
|
|
32 |
end;
|
|
33 |
|
|
34 |
structure BasicPresent: BASIC_PRESENT = Present;
|
|
35 |
open BasicPresent;
|