J'ai besoin de sérialiser l'arborescence de répertoires. je n'ai aucun problème avec ce type:boost.serialization et initialisation paresseuse
std::map<
std::string, // string(path name)
std::vector<std::string> // string array(file names in the path)
> tree;
mais pour la sérialisation l'arborescence des répertoires avec le contenu i besoin d'autres types:
std::map<
std::string, // string(path name)
std::vector< // files array
std::pair<
std::string, // file name
std::vector< // array of file pieces
std::pair< // <<<<<<<<<<<<<<<<<<<<<< for this i need lazy initialization
std::string, // piece buf
boost::uint32_t // crc32 summ on piece
>
>
>
>
> tree;
Comment puis-je initialiser l'objet de type « std :: pair "au moment de sa sérialisation? , c'est-à-dire lire le fichier/calculer crc32 summ.
jusqu'à