2 Star 12 Fork 6

附离/NodeSim

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.cpp 548 Bytes
一键复制 编辑 原始数据 按行查看 历史

#include<iostream>
#include <QApplication>
#include <spdlog/spdlog.h>
#include "mainwindow.h"
int main(int argc, char* argv[])
{
spdlog::set_level(spdlog::level::debug);
// spdlog::debug("This is a debug message.");
// spdlog::info("This is an info message.");
// spdlog::warn("This is a warning message.");
// spdlog::error("This is an error message.");
// spdlog::critical("This is a critical message.");
QApplication a(argc, argv);
MainWindow w;
w.setGeometry(100, 100, 1200, 600);
w.show();
return a.exec();
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/Distillation/node-sim.git
git@gitee.com:Distillation/node-sim.git
Distillation
node-sim
NodeSim
master

搜索帮助