1#include <pqxx/internal/callgate.hxx>
3namespace pqxx::internal::gate
7 friend class pqxx::icursorstream;
11 icursor_iterator::difference_type pos()
const noexcept
16 icursor_iterator *get_prev() {
return home().m_prev; }
17 void set_prev(icursor_iterator *i) { home().m_prev = i; }
19 icursor_iterator *get_next() {
return home().m_next; }
20 void set_next(icursor_iterator *i) { home().m_next = i; }
22 void fill(
result const &r) { home().fill(r); }
Base class for call gates.
Definition callgate.hxx:55
icursor_iterator & reference
A reference to the host class. Helps keep constructors easy.
Definition callgate.hxx:60
Definition icursor_iterator-icursorstream.hxx:6
Result set containing data returned by a query or command.
Definition result.hxx:73