ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/branches/development/src/debug/Backtrace.hpp
Revision: 1491
Committed: Mon Aug 16 18:05:58 2010 UTC (14 years, 8 months ago) by chuckv
File size: 264 byte(s)
Log Message:
Adding debugging and tracing tools from protomol to openmd.

File Contents

# Content
1 #ifndef DEBUG_BACKTRACE_H
2 #define DEBUG_BACKTRACE_H
3
4 #include <vector>
5 #include <string>
6
7 namespace OpenMD {
8 class Backtrace {
9 public:
10 typedef std::vector<std::string> trace_t;
11
12 static void getStackTrace(trace_t &trace);
13 };
14 }
15 #endif // BACKTRACE_H