Added the photo viewer application to the application module
[photoenhancer] / src / app / viewer / main.cpp
1 #include<QApplication>
2 #include "photoviewer.h"
3 int main(int argc,char **argv)
4 {
5     QApplication app(argc,argv);
6     PhotoViewer window;
7     window.resize(600,480);
8     window.show();
9     return app.exec();
10 }