Fast method to read and store serialized objects with pointers and pointers to pointers in C++ - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T22:29:40Z http://stackoverflow.com/feeds/question/1006767 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1006767/fast-method-to-read-and-store-serialized-objects-with-pointers-and-pointers-to-po 2 Fast method to read and store serialized objects with pointers and pointers to pointers in C++ red777 2009-06-17T12:42:35Z 2009-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#1006813 1 Answer by sharptooth for Fast method to read and store serialized objects with pointers and pointers to pointers in C++ sharptooth 2009-06-17T12:49:30Z 2009-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#1006826 3 Answer by rikh for Fast method to read and store serialized objects with pointers and pointers to pointers in C++ rikh 2009-06-17T12:51:59Z 2009-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#1006854 1 Answer by Richard Corden for Fast method to read and store serialized objects with pointers and pointers to pointers in C++ Richard Corden 2009-06-17T12:58:26Z 2009-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#1006865 1 Answer by red777 for Fast method to read and store serialized objects with pointers and pointers to pointers in C++ red777 2009-06-17T13:01:10Z 2009-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#1006892 0 Answer by bah for Fast method to read and store serialized objects with pointers and pointers to pointers in C++ bah 2009-06-17T13:06:55Z 2009-06-17T13:06:55Z <p>you should stop doing such things they can harm your eyes</p>