24 |
24 |
25 def __init__(self, data, entryCallback): |
25 def __init__(self, data, entryCallback): |
26 """ |
26 """ |
27 Constructor |
27 Constructor |
28 |
28 |
29 @param data reference to the data array to read XML from (QByteArray) |
29 @param data reference to the data array to read XML from |
|
30 @type QByteArray |
30 @param entryCallback reference to a function to be called once the |
31 @param entryCallback reference to a function to be called once the |
31 data for a dictionary has been read (function) |
32 data for a dictionary has been read |
|
33 @type function |
32 """ |
34 """ |
33 XMLStreamReaderBase.__init__(self, data) |
35 XMLStreamReaderBase.__init__(self, data) |
34 |
36 |
35 self.__entryCallback = entryCallback |
37 self.__entryCallback = entryCallback |
36 |
38 |