Added the photo viewer application to the application module
[photoenhancer] / src / app / viewer / main.cpp
diff --git a/src/app/viewer/main.cpp b/src/app/viewer/main.cpp
new file mode 100644 (file)
index 0000000..028e750
--- /dev/null
@@ -0,0 +1,10 @@
+#include<QApplication>
+#include "photoviewer.h"
+int main(int argc,char **argv)
+{
+    QApplication app(argc,argv);
+    PhotoViewer window;
+    window.resize(600,480);
+    window.show();
+    return app.exec();
+}