libpqxx
The C++ client library for PostgreSQL
 
Loading...
Searching...
No Matches
errorhandler-connection.hxx
1#include <pqxx/internal/callgate.hxx>
2
3namespace pqxx::internal::gate
4{
5class PQXX_PRIVATE errorhandler_connection : callgate<errorhandler>
6{
7 friend class pqxx::connection;
8
9 errorhandler_connection(reference x) : super(x) {}
10
11 void unregister() noexcept { home().unregister(); }
12};
13} // namespace pqxx::internal::gate
reference home() const noexcept
Definition callgate.hxx:65
errorhandler & reference
Definition callgate.hxx:60
callgate< errorhandler > super
Definition callgate.hxx:58