write to project
| 212 | |
| 213 | // write to project |
| 214 | void Shape::write_(QDataStream& stream) const |
| 215 | { |
| 216 | stream << qint32(handlers.size()); |
| 217 | for (const auto& item : handlers) { |
| 218 | stream << item->pos(); |
| 219 | stream << item->m_hType; |
| 220 | } |
| 221 | write(stream); |
| 222 | } |
| 223 | |
| 224 | // read from project |
| 225 | void Shape::read_(QDataStream& stream) |
no test coverage detected