33 @param multiProject reference to the multi project object |
33 @param multiProject reference to the multi project object |
34 @type MultiProject |
34 @type MultiProject |
35 @param parent reference to the parent object (defaults to None) |
35 @param parent reference to the parent object (defaults to None) |
36 @type QObject (optional) |
36 @type QObject (optional) |
37 """ |
37 """ |
38 super(MultiProjectFile, self).__init__(parent) |
38 super().__init__(parent) |
39 self.__multiProject = multiProject |
39 self.__multiProject = multiProject |
40 |
40 |
41 def writeFile(self, filename: str) -> bool: |
41 def writeFile(self, filename: str) -> bool: |
42 """ |
42 """ |
43 Public method to write the multi project data to a multi project |
43 Public method to write the multi project data to a multi project |