diff options
| author | 2009-05-02 01:21:51 -0400 | |
|---|---|---|
| committer | 2009-05-02 01:21:51 -0400 | |
| commit | fb8677daa2658e52511317511d497dfc456e4dc8 (patch) | |
| tree | 5cbeb07a8dbea9674d19ce1edb3d040ef175ea03 /main.cpp | |
| download | MessagePopper-fb8677daa2658e52511317511d497dfc456e4dc8.tar.xz MessagePopper-fb8677daa2658e52511317511d497dfc456e4dc8.zip | |
Initial commit.
Diffstat (limited to 'main.cpp')
| -rw-r--r-- | main.cpp | 15 |
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(); +} |
