mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-05 12:44:10 +00: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
|