| 119 | } |
| 120 | |
| 121 | void HttpSession::remove(const QByteArray& key) |
| 122 | { |
| 123 | if (dataPtr) |
| 124 | { |
| 125 | dataPtr->lock.lockForWrite(); |
| 126 | dataPtr->values.remove(key); |
| 127 | dataPtr->lock.unlock(); |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | QVariant HttpSession::get(const QByteArray& key) const |
| 132 | { |
no outgoing calls
no test coverage detected