1 Star 1 Fork 1

老苏打/QT

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.cpp 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
老苏打 提交于 2024-09-12 18:45 . QT项目
#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <serialportinfo.h>
#include <baudinfo.h>
#include <comthread.h>
#include <batteryinfo.h>
#include <bms.h>
#include <tempinfo.h>
#include <loginfomodel.h>
#include <otherinfomodel.h>
#include <login.h>
#include <QDebug>
int main(int argc, char *argv[])
{
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QGuiApplication app(argc, argv);
QQmlApplicationEngine engine;
qmlRegisterType<Login>("an.qt.Login", 1, 0, "Login");
qmlRegisterType<SerialPortInfo>("an.qt.SerialPortInfo", 1, 0, "SerialPortInfo");
qmlRegisterType<BaudInfo>("an.qt.BaudInfo", 1, 0, "BaudInfo");
qmlRegisterType<BMS>("an.qt.BMS", 1, 0, "BMS");
qmlRegisterType<LogInfoModel>("an.qt.LogInfoModel", 1, 0, "LogInfoModel");
qmlRegisterType<BatteryInfoModel>("an.qt.BatteryInfoModel", 1, 0, "BatteryInfoModel");
qmlRegisterType<TempInfoModel>("an.qt.TempInfoModel", 1, 0, "TempInfoModel");
qmlRegisterType<OtherInfoModel>("an.qt.OtherInfoModel", 1, 0, "OtherInfoModel");
engine.load(QUrl(QLatin1String("qrc:/main.qml")));
return app.exec();
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhang-jia_lin/qt.git
git@gitee.com:zhang-jia_lin/qt.git
zhang-jia_lin
qt
QT
master

搜索帮助