| 385 | |
| 386 | template<typename Stream> |
| 387 | void Serialize(Stream& s) const |
| 388 | { |
| 389 | // Special case: stream << stream concatenates like stream += stream |
| 390 | if (!vch.empty()) |
| 391 | s.write((char*)vch.data(), vch.size() * sizeof(value_type)); |
| 392 | } |
| 393 | |
| 394 | template<typename T> |
| 395 | CDataStream& operator<<(const T& obj) |