main.cpp 313 B

12345678910111213141516171819202122
  1. #include "widget.h"
  2. #include <QApplication>
  3. #include "Logs/loginit.h"
  4. #include "spdlog/spdlog.h"
  5. #include "FmtLog/fmtlog.h"
  6. int main(int argc, char *argv[])
  7. {
  8. QApplication a(argc, argv);
  9. init_log();
  10. SPDLOG_INFO("********** Xlsx **********");
  11. Widget w;
  12. w.show();
  13. return a.exec();
  14. }