#include <Blah.h>
Public Member Functions | |
| Blah (int x=0) | |
| Blah (const Blah &b) | |
| virtual | ~Blah () |
| int | GetMe (void) |
| void | DumpMe (void) |
| void | SetMe (int x) |
Private Attributes | |
| int | fMyValue |
|
|
Definition at line 25 of file Blah.cxx. References count. 00025 : fMyValue(x) 00026 { 00027 ++ count; 00028 cerr << "Blah ctor ("<<count<<" exist)\n"; 00029 }
|
|
|
Definition at line 30 of file Blah.cxx. References count. 00030 : fMyValue(b.fMyValue) 00031 { 00032 ++ count; 00033 cerr << "Blah copy-ctor ("<<count<<" exist)\n"; 00034 }
|
|
|
Definition at line 35 of file Blah.cxx. References count. 00036 {
00037 -- count;
00038 cerr << "Blah dtor ("<<count<<" left)\n";
00039 }
|
|
|
Definition at line 51 of file Blah.cxx. References fMyValue. 00052 {
00053 cerr << "Blah: holding a value of `" << fMyValue <<"'\n";
00054 }
|
|
|
Definition at line 41 of file Blah.cxx. 00042 {
00043 return fMyValue;
00044 }
|
|
|
Definition at line 46 of file Blah.cxx. References fMyValue. 00047 {
00048 fMyValue = x;
00049 }
|
|
|
|
1.3.9.1