! \brief Closes the communication channel \see reconnect() */
| 132 | \see reconnect() |
| 133 | */ |
| 134 | void QInterProcessChannel::close() { |
| 135 | if (pServer) { |
| 136 | pServer->close(); |
| 137 | delete pServer; |
| 138 | pServer = 0; |
| 139 | |
| 140 | QFile::remove(rcFile); |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | /*! |
| 145 | \brief Attemps to reconnect |
no outgoing calls
no test coverage detected