#include "mainwindow.h"
#include <QApplication>
Include dependency graph for main.cpp:

Go to the source code of this file.
Functions | |
| int | main (int argc, char **argv) |
| int main | ( | int | argc, | |
| char ** | argv | |||
| ) |
Definition at line 28 of file main.cpp.
References QApplication::exec(), Q_INIT_RESOURCE, and QWidget::show().
00029 { 00030 Q_INIT_RESOURCE(images); 00031 00032 QApplication app(argc, argv); 00033 00034 MainWindow window; 00035 window.show(); 00036 00037 return app.exec(); 00038 }
Here is the call graph for this function:

1.5.1