diff options
Diffstat (limited to 'workspace/LogReceiver/main.cpp')
| -rw-r--r-- | workspace/LogReceiver/main.cpp | 12 |
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(); +} |
