Re: Is there a native C++ class library that provides similar ease of use to the .Net XmlSerializer?
Well, you can always propose a new project on sourceforge
and lead the effort... :)
--
=====================================
Alexander Nickolov
Microsoft MVP [VC], MCSD
email: agnickolov@mvps.org
MVP VC FAQ: http://vcfaq.mvps.org
=====================================
"David Lowndes" <DavidL@example.invalid> wrote in message
news:4eb6e31v0dojelcsu8fqksrqhjtae18h4u@4ax.com...
Perhaps some of the nice features of the .NET libraries are possible
thanks
to technologies like e.g. reflection, that are present in C# but not in
C++
Reflection is available on .Net (and Java I guess) and would be
presumably be available with any .Net language not just C#. It's
advantage is that it can make such things appear invisible to the
casual user, but as we all know, you don't get something for nothing
(it must always have an overhead - and one that's unused most of the
time).
I guess I was looking for an almost invisible mechanism that someone
cleverer than me has already done in native C++ - perhaps something
relatively elegant could be done using templates.
Given how much emphasis manipulating XML has in .Net, I think it'd be
useful to have equivalent almost as easy to use facilities in native
C++. A useful addition for Orcas +1 maybe?
Dave