Fast method to read and store serialized objects with pointers and pointers to pointers in C++ - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T22:29:40Zhttp://stackoverflow.com/feeds/question/1006767http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1006767/fast-method-to-read-and-store-serialized-objects-with-pointers-and-pointers-to-po2Fast method to read and store serialized objects with pointers and pointers to pointers in C++ red7772009-06-17T12:42:35Z2009-06-17T13:06:55Z
<p>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. </p>
http://stackoverflow.com/questions/1006767/fast-method-to-read-and-store-serialized-objects-with-pointers-and-pointers-to-po/1006813#10068131Answer by sharptooth for Fast method to read and store serialized objects with pointers and pointers to pointers in C++ sharptooth2009-06-17T12:49:30Z2009-06-17T12:49:30Z<p>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.</p>
http://stackoverflow.com/questions/1006767/fast-method-to-read-and-store-serialized-objects-with-pointers-and-pointers-to-po/1006826#10068263Answer by rikh for Fast method to read and store serialized objects with pointers and pointers to pointers in C++ rikh2009-06-17T12:51:59Z2009-06-17T12:51:59Z<p>You should build a map of pointers to IDs as you serialise your data.</p>
http://stackoverflow.com/questions/1006767/fast-method-to-read-and-store-serialized-objects-with-pointers-and-pointers-to-po/1006854#10068541Answer by Richard Corden for Fast method to read and store serialized objects with pointers and pointers to pointers in C++ Richard Corden2009-06-17T12:58:26Z2009-06-17T12:58:26Z<p>Have you checked out <a href="http://www.boost.org/doc/libs/1%5F39%5F0/libs/serialization/doc/index.html" rel="nofollow">boost::serialize</a>? </p>
<p>I'm pretty sure that it automatically does one level of pointer indirection, and it is capable of writing a "form" of xml.</p>
http://stackoverflow.com/questions/1006767/fast-method-to-read-and-store-serialized-objects-with-pointers-and-pointers-to-po/1006865#10068651Answer by red777 for Fast method to read and store serialized objects with pointers and pointers to pointers in C++ red7772009-06-17T13:01:10Z2009-06-17T13:01:10Z<p>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 ) </p>
http://stackoverflow.com/questions/1006767/fast-method-to-read-and-store-serialized-objects-with-pointers-and-pointers-to-po/1006892#10068920Answer by bah for Fast method to read and store serialized objects with pointers and pointers to pointers in C++ bah2009-06-17T13:06:55Z2009-06-17T13:06:55Z<p>you should stop doing such things they can harm your eyes</p>