|
|
От: | dmitryvodka | |
| Дата: | 20.06.08 10:03 | ||
| Оценка: | |||
bool MyClass::load(istream& is)
{
try {
boost::archive::binary_iarchive ia(is);
clear();
ia >> (*this);
}
catch (const boost::archive::archive_exception& e) {
throw(e);
}
return is.good();
}