2523:139f182b72f6 | 2525:8b507a9a2d40 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing the base class for specific scheme access handlers. | 7 Module implementing the base class for specific scheme access handlers. |
8 """ | 8 """ |
9 | |
10 from __future__ import unicode_literals # __IGNORE_WARNING__ | |
9 | 11 |
10 from PyQt4.QtCore import QObject | 12 from PyQt4.QtCore import QObject |
11 | 13 |
12 | 14 |
13 class SchemeAccessHandler(QObject): | 15 class SchemeAccessHandler(QObject): |
18 """ | 20 """ |
19 Constructor | 21 Constructor |
20 | 22 |
21 @param parent reference to the parent object (QObject) | 23 @param parent reference to the parent object (QObject) |
22 """ | 24 """ |
23 super().__init__(parent) | 25 super(SchemeAccessHandler, self).__init__(parent) |
24 | 26 |
25 def createRequest(self, op, request, outgoingData=None): | 27 def createRequest(self, op, request, outgoingData=None): |
26 """ | 28 """ |
27 Protected method to create a request. | 29 Protected method to create a request. |
28 | 30 |