mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
15 lines
236 B
C++
15 lines
236 B
C++
#include "mainwindow.h"
|
|
#include <QApplication>
|
|
#include "mainwidget.h"
|
|
|
|
int main ( int argc, char* argv[] )
|
|
{
|
|
QApplication a ( argc, argv );
|
|
|
|
//MainWindow w;
|
|
QQtCustomQrDecodeWidget w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|