29 Constructor |
29 Constructor |
30 |
30 |
31 @param address address the server should listen on (QHostAddress) |
31 @param address address the server should listen on (QHostAddress) |
32 @param parent reference to the parent object (QObject) |
32 @param parent reference to the parent object (QObject) |
33 """ |
33 """ |
34 super(CooperationServer, self).__init__(parent) |
34 super().__init__(parent) |
35 |
35 |
36 self.__address = address |
36 self.__address = address |
37 |
37 |
38 def incomingConnection(self, socketDescriptor): |
38 def incomingConnection(self, socketDescriptor): |
39 """ |
39 """ |