libpqxx
The C++ client library for PostgreSQL
errorhandler-connection.hxx
1 #include <pqxx/internal/callgate.hxx>
2 
3 namespace pqxx::internal::gate
4 {
5 class PQXX_PRIVATE errorhandler_connection : callgate<errorhandler>
6 {
7  friend class pqxx::connection;
8 
10 
11  void unregister() noexcept { home().unregister(); }
12 };
13 } // namespace pqxx::internal::gate
Definition: errorhandler-connection.hxx:5
Definition: connection.hxx:106
Base class for call gates.
Definition: callgate.hxx:54
Definition: errorhandler.hxx:45
Connection to a database.
Definition: connection.hxx:278