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