1 #ifndef PNDDOCUSAMPLE_H 
    2 #define PNDDOCUSAMPLE_H 
  150 #endif // PNDDOCUSAMPLE_H 
PndDocuSample()
Default constructor does not need much of a description. 
void PrintValues()
You can either document in the header file... 
Int_t fTransient
! A transient member 
std::string fString
This more verbose method can be used as well. 
void SetString(std::string _s)
Set the string. 
int fNumber
This is the fastest, though. 
void SquareNumber()
Squares the current number. 
Documentation Sample Class. 
void AddString()
Adds the current string to itself. 
~PndDocuSample()
Default destructor. 
int GetNumber()
Return the current number. 
bool fInitialized
Easiest way to document data member variables. 
std::string GetString()
Returns the current string. 
void SetNumber(int _i)
Set the number.