| 219 | |
| 220 | template<class Archive> |
| 221 | void save(Archive & ar) const |
| 222 | { |
| 223 | ar( f1, |
| 224 | CEREAL_NVP(f2), |
| 225 | f3 ); |
| 226 | ar.saveBinaryValue( array, sizeof(int)*4, "cool array man" ); |
| 227 | } |
| 228 | |
| 229 | template<class Archive> |
| 230 | void load(Archive & ar) |
nothing calls this directly
no test coverage detected