IntelliPhoto  0.6
main.cpp
Go to the documentation of this file.
1 #include "GUI/IntelliPhotoGui.h"
2 #include <QApplication>
3 #include <QDebug>
4 #include <vector>
5 #include <fstream>
6 
7 int main(int argc, char*argv[]){
8  // The main application
9  QApplication app(argc, argv);
10  // Create and open the main window
11  IntelliPhotoGui window;
12  window.show();
13 
14  return app.exec();
15 }
IntelliPhotoGui
The IntelliPhotoGui base class handles the graphical user interface and events for the intelliPhoto p...
Definition: IntelliPhotoGui.h:34
IntelliPhotoGui.h
main
int main(int argc, char *argv[])
Definition: main.cpp:7