QtExamples/ExPicShot/main.cpp

23 lines
641 B
C++
Raw Normal View History

2022-03-14 19:59:16 +08:00
#include "widget.h"
#include <QApplication>
2022-03-14 20:13:33 +08:00
#include "spdlog/spdlog.h"
2022-03-14 19:59:16 +08:00
int main(int argc, char *argv[])
2022-03-14 20:13:33 +08:00
{
2022-03-14 19:59:16 +08:00
QApplication a(argc, argv);
2022-03-14 20:13:33 +08:00
spdlog::info("Welcome to spdlog!");
spdlog::error("Some error message with arg: {}", 1);
spdlog::warn("Easy padding in numbers like {:08d}", 12);
spdlog::critical("Support for int: {0:d}; hex: {0:x}; oct: {0:o}; bin: {0:b}", 42);
spdlog::info("Support for floats {:03.2f}", 1.23456);
spdlog::info("Positional args are {1} {0}..", "too", "supported");
spdlog::info("{:<30}", "left aligned");
2022-03-14 19:59:16 +08:00
Widget w;
w.show();
return a.exec();
}