IntelliPhoto  0.4
main.cpp
Go to the documentation of this file.
1 #include "GUI/IntelliPhotoGui.h"
2 #include <QApplication>
3 #include <QDebug>
5 #include<vector>
6 
7 int main(int argc, char *argv[]){
8  // The main application
9  QApplication app(argc, argv);
10 
11  //some nice ass looking comment
12  // Create and open the main window
13  IntelliPhotoGui window;
14  window.show();
15 
16  return app.exec();
17 }
IntelliPhotoGui
Definition: IntelliPhotoGui.h:19
IntelliHelper.h
IntelliPhotoGui.h
main
int main(int argc, char *argv[])
Definition: main.cpp:7