7 Module implementing the handler class for reading an XML project session file. |
7 Module implementing the handler class for reading an XML project session file. |
8 """ |
8 """ |
9 |
9 |
10 from E4Gui.E4Application import e4App |
10 from E4Gui.E4Application import e4App |
11 |
11 |
12 from Config import sessionFileFormatVersion |
12 from .Config import sessionFileFormatVersion |
13 from XMLHandlerBase import XMLHandlerBase |
13 from .XMLHandlerBase import XMLHandlerBase |
14 |
14 |
15 class SessionHandler(XMLHandlerBase): |
15 class SessionHandler(XMLHandlerBase): |
16 """ |
16 """ |
17 Class implementing a sax handler to read an XML project session file. |
17 Class implementing a sax handler to read an XML project session file. |
18 """ |
18 """ |