1130:3e9f0330f833 | 1131:7781e396c903 |
---|---|
123 | 123 |
124 def __init__(self): | 124 def __init__(self): |
125 """ | 125 """ |
126 Constructor | 126 Constructor |
127 """ | 127 """ |
128 QTcpServer.__init__(self) | 128 super().__init__() |
129 | 129 |
130 # create our models | 130 # create our models |
131 self.breakpointModel = BreakPointModel(self) | 131 self.breakpointModel = BreakPointModel(self) |
132 self.watchpointModel = WatchPointModel(self) | 132 self.watchpointModel = WatchPointModel(self) |
133 self.watchSpecialCreated = \ | 133 self.watchSpecialCreated = \ |