foo Class Reference

List of all members.

Public Member Functions

 foo ()
 ~foo ()
void f (int)

Private Member Functions

void g (int)
void h (int)
void k (int)

Detailed Description

Definition at line 35 of file testBacktrace.cpp.


Constructor & Destructor Documentation

foo::foo (  )  [inline]

Definition at line 40 of file testBacktrace.cpp.

00040 {}

foo::~foo (  )  [inline]

Definition at line 41 of file testBacktrace.cpp.

00041 {}


Member Function Documentation

void foo::g ( int   )  [private]

Definition at line 50 of file testBacktrace.cpp.

References h(), and k().

Referenced by f().

00051 {
00052     h(n);
00053     k(n);
00054 }

void foo::h ( int   )  [private]

Definition at line 56 of file testBacktrace.cpp.

Referenced by g().

00057 {
00058     std::cerr << "\ntesting Backtrace(" << n << ")\n";
00059     Backtrace bt(n);
00060     std::cerr << bt;
00061 }

void foo::k ( int   )  [private]

Definition at line 63 of file testBacktrace.cpp.

Referenced by g().

00064 {
00065     void *addrs[32];
00066     assert(n < 32);
00067     std::cerr << "\ntesting Backtrace(" << n << ", addrs)\n";
00068     Backtrace bt(n, addrs);
00069     std::cerr << bt;
00070 }

void foo::f ( int   ) 

Definition at line 45 of file testBacktrace.cpp.

References g().

00046 {
00047     g(n);
00048 }


The documentation for this class was generated from the following file:
Generated on Mon Jun 22 04:00:32 2009 for Fennel by  doxygen 1.5.1