19 #include <bsoncxx/document/view.hpp> 20 #include <bsoncxx/stdx/optional.hpp> 22 #include <mongocxx/config/prelude.hpp> 25 MONGOCXX_INLINE_NAMESPACE_BEGIN
33 class MONGOCXX_API iterator;
70 iterator begin()
const;
89 class MONGOCXX_PRIVATE impl;
90 std::unique_ptr<impl> _impl;
96 using difference_type = std::int64_t;
98 using pointer = std::add_pointer<value_type>::type;
99 using reference = std::add_lvalue_reference<value_type>::type;
100 using iterator_category = std::input_iterator_tag;
141 void operator++(
int);
145 enum class iter_type { k_tracking, k_default_constructed, k_end };
166 MONGOCXX_PRIVATE
bool is_exhausted()
const;
170 const change_stream* _change_stream;
173 MONGOCXX_INLINE_NAMESPACE_END
176 #include <mongocxx/config/postlude.hpp> Top level namespace for the MongoDB C++ driver.
Definition: bulk_write.hpp:24
A read-only, non-owning view of a BSON document.
Definition: view.hpp:33
Class representing a client connection to MongoDB.
Definition: client.hpp:57
Class representing a MongoDB database.
Definition: database.hpp:44
Definition: change_stream.hpp:31
Definition: change_stream.hpp:93
Class representing server side document groupings within a MongoDB database.
Definition: collection.hpp:85