2013-06-20 16:09:50 +02:00
|
|
|
#include "mainwindow.h"
|
|
|
|
#include <QApplication>
|
2013-07-03 14:29:26 +02:00
|
|
|
#include <QTextCodec>
|
2013-06-20 16:09:50 +02:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2013-07-03 14:29:26 +02:00
|
|
|
QApplication app(argc, argv);
|
2013-06-20 16:09:50 +02:00
|
|
|
MainWindow w;
|
2013-07-03 14:29:26 +02:00
|
|
|
app.setWindowIcon(QIcon(":/icon/64x64/icon64x64.png"));
|
2013-06-20 16:09:50 +02:00
|
|
|
w.show();
|
|
|
|
|
2013-07-03 14:29:26 +02:00
|
|
|
return app.exec();
|
2013-06-20 16:09:50 +02:00
|
|
|
}
|