aboutsummaryrefslogtreecommitdiff
path: root/client/esp/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'client/esp/main.cpp')
-rw-r--r--client/esp/main.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/client/esp/main.cpp b/client/esp/main.cpp
new file mode 100644
index 0000000..753b946
--- /dev/null
+++ b/client/esp/main.cpp
@@ -0,0 +1,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();
+}