libpqxx
The C++ client library for PostgreSQL
row_ref-const_result_iterator.hxx
Go to the documentation of this file.
2 
3 namespace pqxx
4 {
5 class row_ref;
6 } // namespace pqxx
7 
8 
9 namespace pqxx::internal::gate
10 {
12 {
14 
15  constexpr row_ref_const_result_iterator(reference x) noexcept : super(x) {}
16 
17  void offset(result_difference_type d) { home().offset(d); }
18 };
19 } // namespace pqxx::internal::gate
Iterator for rows in a result. Use as result::const_iterator.
Definition: result_iterator.hxx:35
Base class for call gates.
Definition: callgate.hxx:55
Definition: row_ref-const_result_iterator.hxx:12
Lightweight reference to one row in a result.
Definition: row.hxx:57
#define PQXX_PRIVATE
Definition: header-pre.hxx:206
Definition: connection.hxx:94
The home of all libpqxx classes, functions, templates, etc.
Definition: array.cxx:26
int result_difference_type
Difference between result sizes.
Definition: types.hxx:67