| 26 | |
| 27 | template <typename Stream, typename Operation> |
| 28 | inline void SerializationOp(Stream& s, Operation ser_action) { |
| 29 | unsigned int nDate = date.toTime_t(); |
| 30 | |
| 31 | READWRITE(this->nVersion); |
| 32 | READWRITE(id); |
| 33 | READWRITE(nDate); |
| 34 | READWRITE(recipient); |
| 35 | |
| 36 | if (ser_action.ForRead()) |
| 37 | date = QDateTime::fromTime_t(nDate); |
| 38 | } |
| 39 | }; |
| 40 | |
| 41 | class RecentRequestEntryLessThan |