Files
aux_cmd/util/axc.util.h
2026-03-29 19:25:59 +08:00

20 lines
299 B
C++

#ifndef AXC_UTIL_H
#define AXC_UTIL_H
#include <spdlog/spdlog.h>
#include <string>
struct FormatterArg {
int indent{4};
std::string file;
};
class AxcUtil
{
public:
static bool initLogger(const std::string& logFile);
static std::shared_ptr<spdlog::logger> getLogger();
};
#endif