userver: userver/logging/fwd.hpp Source File
⚠️ This is the documentation for an old userver version. Click here to switch to the latest version.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
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
23} // namespace logging
24
25USERVER_NAMESPACE_END