You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
401 B
22 lines
401 B
#include <QCoreApplication>
|
|
#include "socket.h"
|
|
#include "logger.h"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
QCoreApplication a(argc, argv);
|
|
|
|
Logger mylog("thetest8.log");
|
|
mylog.clearLog();
|
|
Logger::makeStartingLine();
|
|
|
|
UdpSocket server;
|
|
UdpSocket client;
|
|
|
|
client.sayHello();
|
|
server.sayHello();
|
|
client.sayMsg("Msg1C");
|
|
server.sayMsg("Msg1S");
|
|
|
|
return a.exec();
|
|
}
|
|
|