userver: userver/logging/fwd.hpp Source File
Loading...
Searching...
No Matches
fwd.hpp
Go to the documentation of this file.
1#pragma once
2
3/// @file userver/logging/fwd.hpp
4/// @brief Forward declarations for `logging` types
5
6#include <memory>
7
8USERVER_NAMESPACE_BEGIN
9
10namespace logging {
11
12namespace impl {
13
14class LoggerBase;
15
16} // namespace impl
17
18using LoggerRef = impl::LoggerBase&;
19using LoggerPtr = std::shared_ptr<impl::LoggerBase>;
20
21class LogHelper;
22
23class LogExtra;
24
25} // namespace logging
26
27USERVER_NAMESPACE_END