1
0

errorhandler-connection.hxx 323 B

12345678910111213
  1. #include <pqxx/internal/callgate.hxx>
  2. namespace pqxx::internal::gate
  3. {
  4. class PQXX_PRIVATE errorhandler_connection : callgate<errorhandler>
  5. {
  6. friend class pqxx::connection;
  7. errorhandler_connection(reference x) : super(x) {}
  8. void unregister() noexcept { home().unregister(); }
  9. };
  10. } // namespace pqxx::internal::gate