| 186 | // ------------------------------------------------------------------------------------ |
| 187 | |
| 188 | struct tuple_deserialize |
| 189 | { |
| 190 | tuple_deserialize (std::istream& in_) : in(in_){} |
| 191 | std::istream& in; |
| 192 | template <typename T> |
| 193 | void operator() ( |
| 194 | T& a |
| 195 | ) const { deserialize(a,in); } |
| 196 | }; |
| 197 | |
| 198 | |
| 199 | } |