Start stack frame context/symbol group classes for CDB

This commit is contained in:
Friedemann Kleint
2009-03-26 16:49:28 +01:00
parent 393a03747b
commit 536320ea1a
10 changed files with 642 additions and 193 deletions

View File

@@ -37,6 +37,16 @@
using namespace Debugger::Internal;
StackFrame::StackFrame(int l) :
level(l),
line(0)
{
}
bool StackFrame::isUsable() const
{
return !file.isEmpty() && QFileInfo(file).isReadable();
}
////////////////////////////////////////////////////////////////////////
//