void MyStackWalker::PrintStack( CFileOutput& outfile,int nDepth )
{
	nCurDepth =0;
	m_nPrintDepth = nDepth;
	m_pOutFile = &outfile;
	ShowCallstack();
}
Exemple #2
0
 QStringList getStackWalkerBacktrace()
 {
     m_stackTrace.clear();
     ShowCallstack();
     return m_stackTrace;
 }