24 Oct
2006
24 Oct
'06
3:43 p.m.
"Christian Rössel"
Christian Henning schrieb:
Hi Robert, thanks for the quick answer. I went for the second idea and
...
BOOST_CLASS_EXPORT( derived1 ); BOOST_CLASS_EXPORT( derived2 );
Hi Christian,
it should work if you change BOOST_CLASS_EXPORT to BOOST_CLASS_EXPORT_GUID like this:
#include
... BOOST_CLASS_EXPORT_GUID(derived1, "derived1") BOOST_CLASS_EXPORT_GUID(derived2, "derived2")
Hmm, shouldn't base be exported as well? Jeff