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