2020-04-04 21:49:49 +02:00
|
|
|
#include "mainwindow.h"
|
|
|
|
#include <QApplication>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* MainWindow
|
|
|
|
* Connectionmanager
|
|
|
|
* <Vector> Connections: (Peers)
|
|
|
|
* CLIENT oder client_TCP_Lib -> RecivThread + SendeFunktion
|
|
|
|
* Via Signal: TryConnectors
|
|
|
|
* client_TCP_Lib -> Try to Connect
|
|
|
|
* Client-Reciver-Thread -> Look for incomming Clients
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2020-07-09 11:41:50 +02:00
|
|
|
|
2020-04-04 21:49:49 +02:00
|
|
|
QApplication a(argc, argv);
|
|
|
|
MainWindow w;
|
|
|
|
w.show();
|
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
}
|