]> matita.cs.unibo.it Git - helm.git/blob - helm/DEVEL/mathml_editor/ocaml/mathml_editor.ml
* this is a large commit
[helm.git] / helm / DEVEL / mathml_editor / ocaml / mathml_editor.ml
1
2 let create ~dictionary ~mml ~tml ~log =
3   I_mathml_editor.create dictionary#as_Document mml#as_Document tml#as_Document log
4 ;;
5
6 let freeze = I_mathml_editor.freeze
7 ;;
8
9 let thaw = I_mathml_editor.thaw
10 ;;
11
12 let reset = I_mathml_editor.reset
13 ;;
14
15 let push = I_mathml_editor.push
16 ;;
17
18 let drop = I_mathml_editor.drop
19 ;;
20
21 let get_tex = I_mathml_editor.get_tex
22 ;;
23
24 let get_tml ~editor =
25   new Gdome.document (I_mathml_editor.get_tml ~editor)
26 ;;
27
28 let get_mml ~editor =
29   new Gdome.document (I_mathml_editor.get_mml ~editor)
30 ;;
31