| 173 | // ------------------------------------------------------------------------------------ |
| 174 | |
| 175 | struct tuple_serialize |
| 176 | { |
| 177 | tuple_serialize (std::ostream& out_) : out(out_){} |
| 178 | std::ostream& out; |
| 179 | |
| 180 | template <typename T> |
| 181 | void operator() ( |
| 182 | T& a |
| 183 | ) const { serialize(a,out); } |
| 184 | }; |
| 185 | |
| 186 | // ------------------------------------------------------------------------------------ |
| 187 |