47 void addModelSetRealization(
int modelSet,
bool realized );
51 friend class boost::serialization::access;
53 template <
typename Archive>
54 void serialize(Archive& ar,
unsigned int version)
58 std::list<DtModelSetRealizationRecord> tmp;
59 ar & boost::serialization::make_nvp(
"myModelSetRealizations", tmp);
60 myModelSetRealizations.clear();
61 std::copy(tmp.begin(),tmp.end(),std::back_inserter(myModelSetRealizations));
65 ar & BOOST_SERIALIZATION_NVP(myModelSetRealizations);