2011-07-04 16:17:12 +10:00
|
|
|
#include "backtrace.hpp"
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
|
|
debug::backtrace::backtrace (void):
|
|
|
|
m_frames (DEFAULT_DEPTH)
|
|
|
|
{ ; }
|
|
|
|
|
|
|
|
|
|
|
|
ostream&
|
2013-08-05 16:36:29 +10:00
|
|
|
debug::operator <<(ostream &os, const debug::backtrace&) {
|
2011-07-04 16:17:12 +10:00
|
|
|
os << "null backtrace";
|
|
|
|
return os;
|
|
|
|
}
|
2012-05-15 16:03:14 +10:00
|
|
|
|
|
|
|
|