36 @param language language of the APIs object (string) |
36 @param language language of the APIs object (string) |
37 @param forPreparation flag indicating this object is just needed |
37 @param forPreparation flag indicating this object is just needed |
38 for a preparation process (boolean) |
38 for a preparation process (boolean) |
39 @param parent reference to the parent object (QObject) |
39 @param parent reference to the parent object (QObject) |
40 """ |
40 """ |
41 QObject.__init__(self, parent) |
41 super().__init__(parent) |
42 self.setObjectName("APIs_{0}".format(language)) |
42 self.setObjectName("APIs_{0}".format(language)) |
43 |
43 |
44 self.__inPreparation = False |
44 self.__inPreparation = False |
45 self.__language = language |
45 self.__language = language |
46 self.__forPreparation = forPreparation |
46 self.__forPreparation = forPreparation |