3 This file is part of libmspcore
4 Copyright © 2007 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
8 #ifndef MSP_DEBUG_BACKTRACE_H_
9 #define MSP_DEBUG_BACKTRACE_H_
29 std::list<StackFrame> frames;
32 const std::list<StackFrame> &get_frames() const { return frames; }
34 static Backtrace create();
37 std::ostream &operator<<(std::ostream &, const Backtrace &);
38 std::ostream &operator<<(std::ostream &, const Backtrace::StackFrame &);