.\" This is a wxWidgets manpage page generated from the XML docs .TH wxStackFrame 3wx 2005-02-15 "wxWidgets" "wxWidgets class documentation" .SH NAME wxStackFrame \- .SH DESCRIPTION wxStackFrame represents a single stack frame, or a single function in the call stack, and is used exclusively together with wxStackWalker , see there for a more detailed discussion. .SH "PARENTS" .SH "INCLUDE FILES" wx/stackwalk.h .SH MEMBERS .SS void* GetAddress () Return the address of this frame. .SS wxString GetFileName () Return the name of the file containing this frame, empty if unavailable (typically because debug info is missing). Use HasSourceLocation to check whether the file name is available. .SS size_t GetLevel () Get the level of this frame (deepest/innermost one is 0). .SS size_t GetLine () Return the line number of this frame, 0 if unavailable. .SS wxString GetModule () Get the module this function belongs to (empty if not available). .SS wxString GetName () Return the unmangled (if possible) name of the function containing this frame. .SS size_t GetOffset () Return the return address of this frame. .SS bool GetParam (size_t nwxString * typewxString * namewxString * value) Get the name, type and value (in text form) of the given parameter. Any pointer may be NULL if you're not interested in the corresponding value. Return true if at least some values could be retrieved. This function currently is only implemented under Win32 and requires a PDB file. .SS size_t GetParamCount () Return the number of parameters of this function (may return 0 if we can't retrieve the parameters info even although the function does have parameters). .SS bool HasSourceLocation () Return true if we have the file name and line number for this frame. .SH "SEE ALSO" wxStackWalker .SH "AUTHORS" Documentation content by Julian Smart, Robert Roebling, Vadim Zeitlin, Robin Dunn, et al Conversion to manpage format by Arnout Engelen (http://bzzt.net), bugreports welcome.