open Xml
openOcamlduce.Load
letfrom_xml ?ns xml =letl= make ?ns ()inlet recaux=function| Element (tag, attrs, child) ->
start_elem l tag attrs;List.iter aux child; end_elem l()| PCData s ->
text l s inaux xml;
get lletfrom_file ?ns s =from_xml ?ns (parse_file s)letfrom_string ?ns s =from_xml ?ns (parse_string s)