123456789101112131415161718192021 |
- #include "widget.h"
- #include <QApplication>
- #include "Logs/loginit.h"
- #include "spdlog/spdlog.h"
- int main(int argc, char *argv[])
- {
- QApplication a(argc, argv);
- init_log();
- SPDLOG_INFO("********** VideoPlayer **********");
- Widget w;
- w.show();
- return a.exec();
- }
|