userver: userver/concurrent/background_task_storage_fwd.hpp Source File
Loading...
Searching...
No Matches
background_task_storage_fwd.hpp
Go to the documentation of this file.
1#pragma once
2
3/// @file userver/concurrent/background_task_storage_fwd.hpp
4/// @brief Forward declarations for concurrent::BackgroundTaskStorage
5
6#include <userver/utils/fast_pimpl.hpp>
7
8USERVER_NAMESPACE_BEGIN
9
10namespace concurrent {
11
12class BackgroundTaskStorageCore;
13class BackgroundTaskStorage;
14
15using BackgroundTaskStorageFastPimpl = utils::FastPimpl<BackgroundTaskStorage, 208, 16>;
16
17} // namespace concurrent
18
19USERVER_NAMESPACE_END