From 8716cd14abd820f8419b4be58e884785d63fb6d2 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Wed, 2 Mar 2011 02:05:07 -0500 Subject: Initial commit. --- main.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 main.cpp (limited to 'main.cpp') diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..4ffc439 --- /dev/null +++ b/main.cpp @@ -0,0 +1,10 @@ +#include +#include "Widget.h" + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + Widget w; + w.show(); + return a.exec(); +} -- cgit v1.2.3-59-g8ed1b