Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members  

Blah Class Reference

#include <Blah.h>

List of all members.

Public Methods

 Blah (int x=0)
 Blah (const Blah &b)
virtual ~Blah ()
int GetMe (void)
void DumpMe (void)
void SetMe (int x)

Private Attributes

int fMyValue


Constructor & Destructor Documentation

Blah::Blah int    x = 0
 

Definition at line 25 of file Blah.cxx.

References count.

00025                 : fMyValue(x)
00026 {
00027     ++ count;
00028     cerr << "Blah ctor ("<<count<<" exist)\n";
00029 }

Blah::Blah const Blah &    b
 

Definition at line 30 of file Blah.cxx.

References b, and count.

00030                         : fMyValue(b.fMyValue)
00031 {
00032     ++ count;
00033     cerr << "Blah copy-ctor ("<<count<<" exist)\n";
00034 }

Blah::~Blah   [virtual]
 

Definition at line 35 of file Blah.cxx.

References count.

00036 {
00037     -- count;
00038     cerr << "Blah dtor ("<<count<<" left)\n";
00039 }


Member Function Documentation

void Blah::DumpMe void   
 

Definition at line 51 of file Blah.cxx.

References fMyValue.

00052 {
00053     cerr << "Blah: holding a value of `" << fMyValue <<"'\n";
00054 }

int Blah::GetMe void   
 

Definition at line 41 of file Blah.cxx.

References fMyValue.

00042 {
00043     return fMyValue;
00044 }

void Blah::SetMe int    x
 

Definition at line 46 of file Blah.cxx.

References fMyValue.

00047 {
00048     fMyValue = x;
00049 }


Member Data Documentation

int Blah::fMyValue [private]
 

Definition at line 39 of file Blah.h.

Referenced by DumpMe(), GetMe(), and SetMe().


The documentation for this class was generated from the following files:
Generated on Wed Sep 4 19:21:36 2002 for loon by doxygen1.2.16