Build neccessary structures in memory on ADDTEAM message, but don't send answer yet (need to review team id concept)
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}