Re: Xml import / export from string

2021-08-08 Thread Dante Doménech
What I'm writing is a mathml parser / writer. I'm working over here: https://gerrit.libreoffice.org/c/core/+/120116 I'm trying to implement it with infinite depth (as long as you have enough memory). Preferably efficient since it's gonna be called each time the user presses a key. There are two m

Re: Xml import / export from string

2021-08-07 Thread Tomaž Vajngerl
Hi Dante, On Sat, Aug 7, 2021 at 7:21 PM Dante Doménech wrote: > Hello. I'm working right now at something that requires to be able to > parse xml from and to a string / ustring ( or other as long as I can get > back the string ) and does not pass by a file (just wasting writes of the > harddisk

Xml import / export from string

2021-08-07 Thread Dante Doménech
Hello. I'm working right now at something that requires to be able to parse xml from and to a string / ustring ( or other as long as I can get back the string ) and does not pass by a file (just wasting writes of the harddisk and a performance issue). I'm using SvXMLExport and SvXMLImport. If you