| 93 | |
| 94 | |
| 95 | QByteArray HttpSession::getId() const |
| 96 | { |
| 97 | if (dataPtr) |
| 98 | { |
| 99 | return dataPtr->id; |
| 100 | } |
| 101 | else |
| 102 | { |
| 103 | return QByteArray(); |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | bool HttpSession::isNull() const { |
| 108 | return dataPtr==nullptr; |
no outgoing calls
no test coverage detected