From: Daniel H. <dh...@ma...> - 2004-06-01 08:51:13
|
Am Di, den 01.06.2004 um 9:35 Uhr +0200 schrieb Daniel Holbach: > data structure: > struct t_aaa > { > std::list<t_bbb> bbb; > }; > struct t_bbb > { > std::string ccc; > t_ddd ddd; > }; > struct t_ddd > { > std::list<int> eee; > }; I was being silly, gonna convert the structs into classes. But my general problem stays: when/how do I decide, which object is finished and can be "appended" to the other one? Have a nice day, Daniel |