boost::call_stack::call_stack_info::const_iterator
// In header: <boost/call_stack/stack.hpp> class const_iterator { public: // construct/copy/destruct const_iterator(const typename stack_type::const_iterator &); const_iterator(); // public member functions bool operator==(const const_iterator &) const; bool operator!=(const const_iterator &) const; const call_frame_info_type & operator*() const; const call_frame_info_type * operator->() const; const_iterator & operator++(); const_iterator operator++(int); const_iterator & operator--(); const_iterator operator--(int); };
An iterator yielding a call_frame_info.
const_iterator
public member functionsbool operator==(const const_iterator & other) const;
bool operator!=(const const_iterator & x) const;
const call_frame_info_type & operator*() const;
const call_frame_info_type * operator->() const;
const_iterator & operator++();
const_iterator operator++(int);
const_iterator & operator--();
const_iterator operator--(int);