vote up 2 vote down star

I'm needing a fast method to read and store objects with pointers and pointers to pointers in xml files in c++ . Every object has it's own id , name , and class type.

flag

50% accept rate
Do you have pointers to the base or do you have pointers to the real objects? – TimW Jun 17 at 14:41

5 Answers

vote up 3 vote down check

You should build a map of pointers to IDs as you serialise your data.

link|flag
vote up 1 vote down

You can't do it for pointers, you'll need to define some other method of identifying objects - like GUIDs or some other unique identifiers. In many cases you can just store the objects themselves instead of pointers.

link|flag
vote up 1 vote down

Have you checked out boost::serialize?

I'm pretty sure that it automatically does one level of pointer indirection, and it is capable of writing a "form" of xml.

link|flag
vote up 1 vote down

I've tried boost ,but for size of my project it's too big ( it's big , but it has high simplicity about 4-5 classes )

link|flag
vote up 0 vote down

you should stop doing such things they can harm your eyes

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.