[svg-developers] SVG Parser in VC++

2005-07-12 Thread P. Gnana Prakash
Hi all, Right now we are developing drawing editor application. In this application, one of the requirement is saving and loading the drawing in SVG format. Anyone please give me an idea about how to write the SVG parser or is there anybody already created the parser for this please send it

Re: [svg-developers] SVG Parser in VC++

2005-07-12 Thread Peter Thompson
SVG is just XML, so you are looking for an XML parser for C++. Google for xml parser c++ and you'll quickly find the Xerces parser, which has been ported to Windows/VC++. You can find other c++ parsers if you don't like that one. There is also MSXML. P. Gnana Prakash [EMAIL PROTECTED]

[svg-developers] SVG Parser in VC++

2005-06-16 Thread P. Gnana Prakash
Hi Friends, I am creating the SVG editor application. One of the requirement in my application is open the SVG file which is created in some other SVG editor. For that I need to parse the SVG file and read the xml content and make the corresponding drawing object. Please let me know, Is there