userver: userver/utils/statistics/metrics_storage_fwd.hpp Source File
Loading...
Searching...
No Matches
metrics_storage_fwd.hpp
Go to the documentation of this file.
1#pragma once
2
3/// @file userver/utils/statistics/metrics_storage_fwd.hpp
4/// @brief Forward declarations for utils::statistics::MetricsStorage
5
6#include <memory>
7
8USERVER_NAMESPACE_BEGIN
9
10namespace utils::statistics {
11
12class MetricsStorage;
13
14using MetricsStoragePtr = std::shared_ptr<MetricsStorage>;
15
16} // namespace utils::statistics
17
18USERVER_NAMESPACE_END