Add stack trace viewer

This commit is contained in:
2018-10-17 21:38:45 -05:00
parent 733350b143
commit df47a6a1bf
14 changed files with 210 additions and 13 deletions

View File

@@ -23,6 +23,7 @@ Field::Field(QJsonObject field) {
Frame::Frame(QJsonObject frame) {
this->arch = frame["arch"].toString();
this->function = frame["function"].toString();
this->file = frame["file"].toString();
this->line = frame["line"].toDouble();
auto fields = frame["fields"].toArray();