]> matita.cs.unibo.it Git - helm.git/blob - helm/software/lambda-delta/src/xml/xmlLibrary.mli
- initial support for abstractions with explicit levels
[helm.git] / helm / software / lambda-delta / src / xml / xmlLibrary.mli
1 (*
2     ||M||  This file is part of HELM, an Hypertextual, Electronic        
3     ||A||  Library of Mathematics, developed at the Computer Science     
4     ||T||  Department, University of Bologna, Italy.                     
5     ||I||                                                                
6     ||T||  HELM is free software; you can redistribute it and/or         
7     ||A||  modify it under the terms of the GNU General Public License   
8     \   /  version 2 or (at your option) any later version.              
9      \ /   This software is distributed as is, NO WARRANTY.              
10       V_______________________________________________________________ *)
11
12 type och = string -> unit
13
14 type attr = string * string
15
16 type pp = och -> int -> unit
17
18 val export_entity:
19    ('term -> pp) -> bool -> string -> 'term Entity.entity -> unit
20
21 val tag: string -> attr list -> ?contents:pp -> pp 
22
23 val sort: string
24
25 val lref: string
26
27 val gref: string
28
29 val cast: string
30
31 val appl: string
32
33 val proj: string
34
35 val abst: string
36
37 val abbr: string
38
39 val void: string
40
41 val position: int -> attr
42
43 val offset: int -> attr
44
45 val uri: Entity.uri -> attr
46
47 val arity: int -> attr
48
49 val level: Level.level -> attr
50
51 val name: Entity.attrs -> attr
52
53 val mark: Entity.attrs -> attr
54
55 val meta: Entity.attrs -> attr