5 |
5 |
6 """ |
6 """ |
7 Module implementing the handler class for reading an XML multi project file. |
7 Module implementing the handler class for reading an XML multi project file. |
8 """ |
8 """ |
9 |
9 |
10 from Config import multiProjectFileFormatVersion |
10 from .Config import multiProjectFileFormatVersion |
11 from XMLHandlerBase import XMLHandlerBase |
11 from .XMLHandlerBase import XMLHandlerBase |
12 |
12 |
13 import Utilities |
13 import Utilities |
14 |
14 |
15 class MultiProjectHandler(XMLHandlerBase): |
15 class MultiProjectHandler(XMLHandlerBase): |
16 """ |
16 """ |