PrevUpHomeNext

Class const_iterator

boost::call_stack::call_stack_info::const_iterator

Synopsis

// 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);
};

Description

An iterator yielding a call_frame_info.

const_iterator public construct/copy/destruct

  1. const_iterator(const typename stack_type::const_iterator & it);
  2. const_iterator();

const_iterator public member functions

  1. bool operator==(const const_iterator & other) const;
  2. bool operator!=(const const_iterator & x) const;
  3. const call_frame_info_type & operator*() const;
  4. const call_frame_info_type * operator->() const;
  5. const_iterator & operator++();
  6. const_iterator operator++(int);
  7. const_iterator & operator--();
  8. const_iterator operator--(int);

PrevUpHomeNext