7 Module implementing a class for reading an XML multi project file. |
7 Module implementing a class for reading an XML multi project file. |
8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 |
11 |
|
12 from eric7 import Utilities |
|
13 |
12 from .Config import multiProjectFileFormatVersion |
14 from .Config import multiProjectFileFormatVersion |
13 from .XMLStreamReaderBase import XMLStreamReaderBase |
15 from .XMLStreamReaderBase import XMLStreamReaderBase |
14 |
|
15 from eric7 import Utilities |
|
16 |
16 |
17 |
17 |
18 class MultiProjectReader(XMLStreamReaderBase): |
18 class MultiProjectReader(XMLStreamReaderBase): |
19 """ |
19 """ |
20 Class for reading an XML multi project file. |
20 Class for reading an XML multi project file. |