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