diff options
| author | Niklas | 2011-07-06 16:56:16 +0200 |
|---|---|---|
| committer | Niklas | 2011-07-06 16:56:16 +0200 |
| commit | e71f5ac6630686f3bd92817b401ed8d88e121f6d (patch) | |
| tree | 13f6a33a630f61aa0b259c0b302b8ae203058bc0 /workspace/LogWriter/main.cpp | |
| parent | new funtions for the networkDiscovery class. (diff) | |
| download | fbgui-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/LogWriter/main.cpp')
| -rw-r--r-- | workspace/LogWriter/main.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/workspace/LogWriter/main.cpp b/workspace/LogWriter/main.cpp new file mode 100644 index 0000000..5695d76 --- /dev/null +++ b/workspace/LogWriter/main.cpp @@ -0,0 +1,12 @@ +#include "logwriter.h" + +#include <QtGui> +#include <QApplication> + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + LogWriter w; + w.show(); + return a.exec(); +} |
