boost::call_stack::call_frame
// 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; };
Platform agnostic call frame.
call_frame
public
construct/copy/destructcall_frame();
call_frame(const call_frame_impl & frm);
call_frame(const call_frame & other);
call_frame& operator=(call_frame other);
call_frame
public member functionsvoid swap(call_frame & other);
const address_type addr() const;
Returns: |
an opaque address useable by symbol resolvers. |
bool operator==(call_frame const & other) const;