PrevUpHomeNext

Class call_frame

boost::call_stack::call_frame

Synopsis

// In header: <boost/call_stack/frame.hpp>


class call_frame {
public:
  // construct/copy/destruct
  call_frame();
  call_frame(const call_frame_impl &);
  call_frame(const call_frame &);
  call_frame& operator=(call_frame);

  // public member functions
  void swap(call_frame &);
  const address_type addr() const;
  bool operator==(call_frame const &) const;
};

Description

Platform agnostic call frame.

call_frame public construct/copy/destruct

  1. call_frame();
  2. call_frame(const call_frame_impl & frm);
  3. call_frame(const call_frame & other);
  4. call_frame& operator=(call_frame other);

call_frame public member functions

  1. void swap(call_frame & other);
  2. const address_type addr() const;

    Returns:

    an opaque address useable by symbol resolvers.

  3. bool operator==(call_frame const & other) const;

PrevUpHomeNext