@@ -258,4 +258,7 @@ paket-files/
# Python Tools for Visual Studio (PTVS)
__pycache__/
-*.pyc
+*.pyc
+
+*.exe
+*.dmp
@@ -1,4 +1,5 @@
#include "LTSKlient.h"
+#include <iostream>
// Inhalt der LTSKlient Klasse aus LTSKlient.h
// Konstruktor
@@ -41,6 +42,7 @@ bool LTSKlient::verbinden()
if( verbunden )
return 1;
lock();
+ std::cout << "connect to " << ip->getText() << ":" << port << "\n";
bool b = k->verbinde( port, ip->getText() );
if( !b )
{