Abraxas/CCS Home Table of Contents
class C42 {
public:
int f42() const ;
}
private:
int spoon_; // loader for feeding OS, restricted use
Function Name: f42()
int C42::f42() const {// here the public function f42 is 'giving away' private data
return spoon_;
};
Abraxas/CCS Home Table of Contents