mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-03-12 04:36:29 -07:00
14 lines
323 B
C++
14 lines
323 B
C++
#include <pqxx/internal/callgate.hxx>
|
|
|
|
namespace pqxx::internal::gate
|
|
{
|
|
class PQXX_PRIVATE errorhandler_connection : callgate<errorhandler>
|
|
{
|
|
friend class pqxx::connection;
|
|
|
|
errorhandler_connection(reference x) : super(x) {}
|
|
|
|
void unregister() noexcept { home().unregister(); }
|
|
};
|
|
} // namespace pqxx::internal::gate
|