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