Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members | Related Pages

Blah Class Reference

#include <Blah.h>

List of all members.

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


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 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 Mon Feb 9 22:56:18 2009 for loon by doxygen 1.3.5