mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
12 lines
172 B
C++
12 lines
172 B
C++
|
#include "mainwindow.h"
|
||
|
#include <QApplication>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QApplication a(argc, argv);
|
||
|
MainWindow w;
|
||
|
w.show();
|
||
|
|
||
|
return a.exec();
|
||
|
}
|