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.
21 lines
378 B
21 lines
378 B
#include <QCoreApplication>
|
|
#include "socket.h"
|
|
#include "logger.h"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
QCoreApplication a(argc, argv);
|
|
|
|
Logger mylog("thetest5.log");
|
|
UdpSocket server;
|
|
UdpSocket client;
|
|
|
|
client.sayHello();
|
|
server.sayHello();
|
|
client.sayMsg("MsgC");
|
|
server.sayMsg("MsgS");
|
|
|
|
Logger::makeFinishingLine();
|
|
|
|
return a.exec();
|
|
}
|
|
|