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