Slaus
Slaus

Reputation: 2236

C++ library to read a document, created within "Open Office Calc"

I have the file created within "Open Office Calc" which I need to load into my C++ program to generate some game-specific code for which this design file was written. All I need is spreadsheets names, fields data and formulas results.

Is there a way to do so?

Thank you.

Upvotes: 1

Views: 1500

Answers (1)

Some programmer dude
Some programmer dude

Reputation: 409266

All OpenOffice files are zip-archives, with the contents in publicly specified XML files. Might be some work but would not be impossible to get the data you need with the help of most available XML-parsers.

Upvotes: 2

Related Questions