userver: userver/utils/statistics/metrics_storage_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
metrics_storage_fwd.hpp
1#pragma once
2
3#include <memory>
4
5USERVER_NAMESPACE_BEGIN
6
7namespace utils::statistics {
8
9class MetricsStorage;
10
11using MetricsStoragePtr = std::shared_ptr<MetricsStorage>;
12
13} // namespace utils::statistics
14
15USERVER_NAMESPACE_END