Tracer
v0.0.1
A platform independant stack trace generator
|
Describes a frame. More...
#include <Frame.hpp>
Public Attributes | |
FrameFlags | flags = FrameFlags::NONE |
Describes which fields are set. | |
Address | frameAddr = 0 |
The instruction pointer of the stack frame. | |
std::string | funcName |
The name of the function. | |
std::string | moduleName |
The name / path of the binary file. | |
std::string | fileName |
The name / path of the source file. | |
int | line = 0 |
The line number in the source file. | |
int | column = 0 |
The column in the source file. | |