userver: userver/storages/postgres/database_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
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