/usr/include/pqxx/internal/gates/result-connection.hxx is in libpqxx3-dev 3.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #include <pqxx/internal/callgate.hxx>
namespace pqxx
{
namespace internal
{
namespace gate
{
class PQXX_PRIVATE result_connection : callgate<const result>
{
friend class pqxx::connection_base;
result_connection(reference x) : super(x) {}
operator bool() const { return bool(home()); }
bool operator!() const { return !home(); }
};
} // namespace pqxx::internal::gate
} // namespace pqxx::internal
} // namespace pqxx
|