#include #include #include namespace pqxx { class blob; class largeobject; } // namespace pqxx namespace pqxx::internal::gate { class PQXX_PRIVATE connection_largeobject : callgate { friend class pqxx::blob; friend class pqxx::largeobject; connection_largeobject(reference x) : super(x) {} pq::PGconn *raw_connection() const { return home().raw_connection(); } }; class PQXX_PRIVATE const_connection_largeobject : callgate { friend class pqxx::blob; friend class pqxx::largeobject; const_connection_largeobject(reference x) : super(x) {} std::string error_message() const { return home().err_msg(); } }; } // namespace pqxx::internal::gate