代码搜索:qapplication
找到约 2,601 项符合「qapplication」的源代码
代码结果 2,601
www.eeworm.com/read/270805/11025150
cpp main.cpp
#include
#include "weatherballoon.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
WeatherBalloon balloon;
balloon.setCaption(QObject::tr("Weather Bal
www.eeworm.com/read/270805/11025169
cpp main.cpp
#include
#include
#include "tripserver.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
TripServer server;
if (!server.ok()) {
www.eeworm.com/read/470561/6913820
cpp main.cpp
#include
#include "mainwindow.h"
int main(int argc,char ** argv){
QApplication app(argc,argv);
MainWindow mw;
mw.show();
return app.exec();
}