views:

457

answers:

1

We have a legacy app that uses MFC's CArchive. I am researching saving the data in XML vs. binary. I have looked several libraries such as:

They are nice, and offer many advantages above & beyond MFC's CArchive.

The main goal of the effort (other than an XML store) is to minimize code changes to this legacy app. I don't need new/improved serialization functionality for this project, and ideally, I could change a few CArchive objects to CXmlArchive and, like a puff of orange smoke, the store is XML.

Do you know of an existing library that meets the above requirements?

+1  A: 

I've used Sam Blackburn's classes (but not this one) with decent results:

CXMLArchive

Jim In Texas