| 40 | } |
| 41 | |
| 42 | QString QtHttpClientWrapper::getGuid(void) |
| 43 | { |
| 44 | if (m_guid.isEmpty()) |
| 45 | { |
| 46 | m_guid = QString::fromLocal8Bit( |
| 47 | QCryptographicHash::hash( |
| 48 | QByteArray::number((quint64)(this)), |
| 49 | QCryptographicHash::Md5 |
| 50 | ).toHex() |
| 51 | ); |
| 52 | } |
| 53 | |
| 54 | return m_guid; |
| 55 | } |
| 56 | |
| 57 | |
| 58 | void QtHttpClientWrapper::onReplySendDataRequested(void) |
no test coverage detected