class foo {
func(int x);
}
class faa {
foo fooObject;
}
would the function func(int x) be allowed to access private, public and
protected member variables of faa?
cheers
dave
func(int x);
}
class faa {
foo fooObject;
}
would the function func(int x) be allowed to access private, public and
protected member variables of faa?
cheers
dave
Comment