Is there an Open XML parser for C ++?

I want to scan a PowerPoint 2007 file, but I'm trying to do this using C ++. Is there any Open XML parser for C ++?

+3
source share
4 answers

Here's a recently released C library called libOPC, which has the same intent as the Open XML SDK, but can be used on all Linux / Windows / Mac / etc. You can read about it here: libOPC version 0.0.1 is released and get the code from CodePlex (be sure to check the documentation page for demo videos).

+5
source

Source: https://habr.com/ru/post/1741637/


All Articles