]> ToastFreeware Gitweb - toast/confclerk.git/blob - src/app/main.cpp
f8ac9dadbe0996ff6bbd57ce29586971b019479b
[toast/confclerk.git] / src / app / main.cpp
1 #include <mainwindow.h>
2
3 #include <QtGui/QApplication>
4
5 int main(int argc, char *argv[])
6 {
7     Q_INIT_RESOURCE(icons);
8     Q_INIT_RESOURCE(maps);
9     Q_INIT_RESOURCE(schedule);
10
11     QApplication a(argc, argv);
12     QApplication::setWindowIcon(QIcon(":/icons/fosdem.png"));
13
14     MainWindow w;
15     w.show();
16     return a.exec();
17 }
18