summaryrefslogtreecommitdiffstats
path: root/workspace/LogReceiver/main.cpp
diff options
context:
space:
mode:
authorNiklas2011-07-06 16:56:16 +0200
committerNiklas2011-07-06 16:56:16 +0200
commite71f5ac6630686f3bd92817b401ed8d88e121f6d (patch)
tree13f6a33a630f61aa0b259c0b302b8ae203058bc0 /workspace/LogReceiver/main.cpp
parentnew funtions for the networkDiscovery class. (diff)
downloadfbgui-e71f5ac6630686f3bd92817b401ed8d88e121f6d.tar.gz
fbgui-e71f5ac6630686f3bd92817b401ed8d88e121f6d.tar.xz
fbgui-e71f5ac6630686f3bd92817b401ed8d88e121f6d.zip
added the two tryout with a qt LogReceiver and a c code client
Diffstat (limited to 'workspace/LogReceiver/main.cpp')
-rw-r--r--workspace/LogReceiver/main.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/workspace/LogReceiver/main.cpp b/workspace/LogReceiver/main.cpp
new file mode 100644
index 0000000..e545906
--- /dev/null
+++ b/workspace/LogReceiver/main.cpp
@@ -0,0 +1,12 @@
+#include "logreceiver.h"
+
+#include <QtGui>
+#include <QApplication>
+
+int main(int argc, char *argv[])
+{
+ QApplication a(argc, argv);
+ LogReceiver w;
+ w.show();
+ return a.exec();
+}