| 146 | const int ApiServer::SignalWaitTimeoutMs = 1000; // 1 second |
| 147 | |
| 148 | ApiServer::ApiServer(QObject *parent) |
| 149 | : QTcpServer(parent) |
| 150 | { |
| 151 | initPrivateVariables(); |
| 152 | initApiSetColorTask(); |
| 153 | initHelpMessage(); |
| 154 | initShortHelpMessage(); |
| 155 | } |
| 156 | |
| 157 | ApiServer::ApiServer(quint16 port, QObject *parent) |
| 158 | : QTcpServer(parent) |
nothing calls this directly
no outgoing calls
no test coverage detected