IntelliPhoto  0.5
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  // Create and open the main window
12  IntelliPhotoGui window;
13  window.show();
14 
15  return app.exec();
16 }
IntelliPhotoGui
The IntelliPhotoGui class handles the graphical user interface for the intelliPhoto program.
Definition: IntelliPhotoGui.h:22
IntelliHelper.h
IntelliPhotoGui.h
main
int main(int argc, char *argv[])
Definition: main.cpp:7