summaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
authorJason A. Donenfeld <Jason@zx2c4.com>2009-05-02 01:21:51 -0400
committerJason A. Donenfeld <Jason@zx2c4.com>2009-05-02 01:21:51 -0400
commitfb8677daa2658e52511317511d497dfc456e4dc8 (patch)
tree5cbeb07a8dbea9674d19ce1edb3d040ef175ea03 /main.cpp
downloadMessagePopper-fb8677daa2658e52511317511d497dfc456e4dc8.tar.xz
MessagePopper-fb8677daa2658e52511317511d497dfc456e4dc8.zip
Initial commit.
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
new file mode 100644
index 0000000..4167e14
--- /dev/null
+++ b/main.cpp
@@ -0,0 +1,15 @@
+#include <QApplication>
+#include <QHostAddress>
+
+#include "MessageForm.h"
+#include "MessageListener.h"
+
+int main(int argc, char *argv[])
+{
+ QApplication app(argc, argv);
+
+ MessageForm a;
+ a.show();
+
+ return app.exec();
+}