Inheritance diagram for A:

Public Member Functions | |
| A (int i) | |
| ~A () | |
| int | Get () |
| void | Set (int i) |
| A () | |
| ~A () | |
| void | Set (B *b) |
Private Attributes | |
| int | fInt |
| Ptr< B > | bptr |
|
|
Definition at line 8 of file test-chain.cc. References fInt.
|
|
|
Definition at line 9 of file test-chain.cc. References fInt. 00009 { cerr << "~A(" << fInt << ")\n"; }
|
|
|
Definition at line 33 of file test-conn.cc. 00033 { cerr << "A()\n"; }
|
|
|
Definition at line 34 of file test-conn.cc. 00034 { cerr << "~A()\n"; }
|
|
|
Definition at line 10 of file test-chain.cc. 00010 { return fInt; }
|
|
|
Definition at line 35 of file test-conn.cc. References bptr. 00035 { bptr = b; }
|
|
|
Definition at line 11 of file test-chain.cc. References fInt. Referenced by Main::Main(). 00011 { fInt = i; }
|
|
|
Definition at line 31 of file test-conn.cc. Referenced by Set(). |
|
|
Definition at line 6 of file test-chain.cc. |
1.3.9.1