X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic%2FcicParser.mli;h=a965cf2626b06eff6127ad66e8a91b62fc30b149;hb=bac72fcaa876137ab7a5630e0c1badc2a627dce8;hp=1eb5a043b8a9405aa045ce5adfd8c499cd84f43b;hpb=2dc0733271cd251aaa3edaece8a883fe691775ab;p=helm.git diff --git a/helm/ocaml/cic/cicParser.mli b/helm/ocaml/cic/cicParser.mli index 1eb5a043b..a965cf262 100644 --- a/helm/ocaml/cic/cicParser.mli +++ b/helm/ocaml/cic/cicParser.mli @@ -36,10 +36,14 @@ (* *) (******************************************************************************) -(* given the filename of an xml file of a cic object and it's uri, it returns *) -(* its internal annotated representation. *) -val annobj_of_xml : string -> UriManager.uri -> Cic.annobj +(* given the filename of an xml file of a cic object, it returns *) +(* its internal annotated representation. In the case of constants (whose *) +(* type is splitted from the body), a second xml file (for the body) must be *) +(* provided. *) +val annobj_of_xml : string -> string option -> Cic.annobj -(* given the filename of an xml file of a cic object and it's uri, it returns *) -(* its internal logical representation. *) -val obj_of_xml : string -> UriManager.uri -> Cic.obj +(* given the filename of an xml file of a cic object, it returns *) +(* its internal logical representation. In the case of constants (whose *) +(* type is splitted from the body), a second xml file (for the body) must be *) +(* provided. *) +val obj_of_xml : string -> string option -> Cic.obj