Skip to content

Commit

Permalink
🚧 gucc: add missing logger header
Browse files Browse the repository at this point in the history
  • Loading branch information
vnepogodin committed Jul 8, 2024
1 parent 8a81f5f commit 761a281
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions gucc/include/gucc/logger.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#ifndef LOGGER_HPP
#define LOGGER_HPP

#include <memory> // for shared_ptr

#include <spdlog/spdlog-inl.h>

namespace gucc::logger {

// Set library default logger
void set_logger(std::shared_ptr<spdlog::logger> default_logger) noexcept;

} // namespace gucc::logger

#endif // LOGGER_HPP

0 comments on commit 761a281

Please sign in to comment.