Е
Size: a a a
Е
RR
Е
RR
connect(&tsock, &QUdpSocket::readyRead, this, &Controller::tsockRead);
......
if (tsock.bind(QHostAddress::LocalHost, 50200)) {
qDebug() << "tsock bind ok";
} else {
qDebug() << "tsock bind nok";
}
.....
RR
RR
Е
connect(&tsock, &QUdpSocket::readyRead, this, &Controller::tsockRead);
......
if (tsock.bind(QHostAddress::LocalHost, 50200)) {
qDebug() << "tsock bind ok";
} else {
qDebug() << "tsock bind nok";
}
.....
RR
Е
connect(&tsock, &QUdpSocket::readyRead, this, &Controller::tsockRead);
......
if (tsock.bind(QHostAddress::LocalHost, 50200)) {
qDebug() << "tsock bind ok";
} else {
qDebug() << "tsock bind nok";
}
.....
RR
int main(int argc, char *argv[])
{
Controller c;
QApplication a(argc, argv);
StatusWindow w(&c);
w.show();
c.start();
return a.exec();
}
RR
RR
RR
RR
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Controller c;
StatusWindow w(&c);
w.show();
c.start();
return a.exec();
}
Е
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Controller c;
StatusWindow w(&c);
w.show();
c.start();
return a.exec();
}
RR
RR
KT
П
П