27 """ |
27 """ |
28 super(FileAccessHandler, self).__init__(parent) |
28 super(FileAccessHandler, self).__init__(parent) |
29 |
29 |
30 def createRequest(self, op, request, outgoingData=None): |
30 def createRequest(self, op, request, outgoingData=None): |
31 """ |
31 """ |
32 Protected method to create a request. |
32 Public method to create a request. |
33 |
33 |
34 @param op the operation to be performed |
34 @param op the operation to be performed |
35 (QNetworkAccessManager.Operation) |
35 (QNetworkAccessManager.Operation) |
36 @param request reference to the request object (QNetworkRequest) |
36 @param request reference to the request object (QNetworkRequest) |
37 @param outgoingData reference to an IODevice containing data to be sent |
37 @param outgoingData reference to an IODevice containing data to be sent |