| 166 | typedef vector_type::reverse_iterator reverse_iterator; |
| 167 | |
| 168 | explicit CDataStream(int nTypeIn, int nVersionIn) |
| 169 | { |
| 170 | Init(nTypeIn, nVersionIn); |
| 171 | } |
| 172 | |
| 173 | CDataStream(const_iterator pbegin, const_iterator pend, int nTypeIn, int nVersionIn) : vch(pbegin, pend) |
| 174 | { |
nothing calls this directly
no test coverage detected