| 1250 | |
| 1251 | template <typename Stream> |
| 1252 | void Serialize(Stream& s) const |
| 1253 | { |
| 1254 | ParamsStream ss{s, m_params}; |
| 1255 | ::Serialize(ss, m_object); |
| 1256 | } |
| 1257 | template <typename Stream> |
| 1258 | void Unserialize(Stream& s) |
| 1259 | { |
nothing calls this directly
no test coverage detected