22 |
22 |
23 def __init__(self, device, project): |
23 def __init__(self, device, project): |
24 """ |
24 """ |
25 Constructor |
25 Constructor |
26 |
26 |
27 @param device reference to the I/O device to read from (QIODevice) |
27 @param device reference to the I/O device to read from |
|
28 @type QIODevice |
28 @param project Reference to the project object to store the |
29 @param project Reference to the project object to store the |
29 information into. |
30 information into. |
|
31 @type Project |
30 """ |
32 """ |
31 XMLStreamReaderBase.__init__(self, device) |
33 XMLStreamReaderBase.__init__(self, device) |
32 |
34 |
33 self.project = project |
35 self.project = project |
34 |
36 |