1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/test/voicetest/main.cpp
2018-02-12 16:58:34 +08:00

19 lines
286 B
C++

#include "mainwindow.h"
#include <QApplication>
#include <qqtwidgets.h>
#include <qqtapplication.h>
int main ( int argc, char* argv[] )
{
QQtApplication a ( argc, argv );
MainWindow w;
w.show();
#ifdef __ANDROID__
w.showMaximized();
#endif
return a.exec();
}