Data access privileges

class ClassName {
public:
members with no access restriction
protected:
access by: this, derived classes, friends
private:
access by: this, friends
} ;



Leo Liberti 2008-01-12