Hi peoples!
I'm use QNetworkAccessManager to communicate with servers in net using get and post functions/methods of this class...
Docu says what get and post functions
returns a new QNetworkReply object
...
Do I need to delete this QNetworkReply objects after the job is done, or the QNetworkAccesManager handle this?

Should I
Qt Code:
  1. delete reply; //reply is pointer on QNetworkReply object, obtained from QNetworkAccessManager->get() function
To copy to clipboard, switch view to plain text mode 
or not?

Thanks in advance!