| 439 | |
| 440 | template <class Item> |
| 441 | void TopDUContextDynamicData::DUChainItemStorage<Item>::writeData(QFile* file) |
| 442 | { |
| 443 | uint writeValue = offsets.size(); |
| 444 | file->write(reinterpret_cast<const char*>(&writeValue), sizeof(uint)); |
| 445 | file->write(reinterpret_cast<const char*>(offsets.data()), sizeof(ItemDataInfo) * offsets.size()); |
| 446 | } |
| 447 | |
| 448 | //END DUChainItemStorage |
| 449 |