CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
BackTrace.h
Go to the documentation of this file.
1 #ifndef UTILITIES_GENERAL_BACKTRACE_H
2 #define UTILITIES_GENERAL_BACKTRACE_H
3 //
4 // V 0.0
5 // V.I.&L.T. 19/07/2001
6 // imported from original Lassi code...
7 
8 #include <iosfwd>
9 
12 class BackTrace {
13 public:
14  enum {MAX_BACKTRACE_DEPTH=100};
16  BackTrace();
17 
20 
21  void trace() const;
22  void trace(std::ostream & out) const;
23 
24 private:
25 
26 };
27 
28 #endif // UTILITIES_GENERAL_BACKTRACE_H
~BackTrace()
destructor
Definition: BackTrace.h:19
void trace() const
Definition: BackTrace.cc:8
tuple out
Definition: dbtoconf.py:99
BackTrace()
constructor
Definition: BackTrace.cc:6