Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++ xml parser with unicode support & without COM registration

I need to use a C++ XML parser/writer for implementing virtual registry on the basis of the following 2 conditions.

  1. It should not write entries in registry
  2. It should support unicode characters.

I have tried the following parsers but none have solved the 2 conditions:

  • Msxml (writes in to registry for COM creation)
  • Xerces (registers COM)
  • Tiny Xml (no entries in reg, but does not support unicode characters)
  • Rapid Xml (no unicode uspport)

So please if you could know any which solves my 2 condition, please let me know

like image 297
Muthukumar Palaniappan Avatar asked May 01 '26 10:05

Muthukumar Palaniappan


1 Answers

Take a look at pugixml.

like image 142
Jesse Stimpson Avatar answered May 04 '26 00:05

Jesse Stimpson