blob: 753b9468363e2a5b1e9825d16bf45dae00b539c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#include <QCoreApplication>
#include "mytcpsocket.h"
#include "timetest.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
// qint16 startTime= 46;
TimeTest time;
//while(1){
//
// qint16 minuut = time.myfunction();
// if(minuut == startTime)
// {
// qDebug() << "Tijd: " << minuut;
// startTime+=1;
// }
//}
MyTcpSocket s;
s.doConnect();
return a.exec();
}
|