File log_pattern_guard.h File List > common > log_pattern_guard.h Go to the documentation of this file #pragma once #include <spdlog/spdlog.h> #include <uipc/common/dllexport.h> namespace uipc { class UIPC_CORE_API LogPatternGuard { public: LogPatternGuard(std::string_view pattern) noexcept; ~LogPatternGuard() noexcept; }; } // namespace uipc