12 lines
193 B
C++
12 lines
193 B
C++
#ifndef TOOLS__LOGGER_HPP
|
|
#define TOOLS__LOGGER_HPP
|
|
|
|
#include <spdlog/spdlog.h>
|
|
|
|
namespace tools
|
|
{
|
|
std::shared_ptr<spdlog::logger> logger();
|
|
|
|
} // namespace tools
|
|
|
|
#endif // TOOLS__LOGGER_HPP
|