Initial import of the code.
[grr] / src / qtmain.cpp
diff --git a/src/qtmain.cpp b/src/qtmain.cpp
new file mode 100644 (file)
index 0000000..d98c0c8
--- /dev/null
@@ -0,0 +1,13 @@
+#include <QApplication>
+
+#include "feedswindow.h"
+
+int main(int argc, char **argv) {
+       
+  QApplication app(argc, argv);
+       FeedsWindow feed_window;
+       feed_window.show();
+
+       return app.exec();
+}
+