I wrote the following code:
class Osoba{
private:
string imie, nazwisko, kolorOczu;
friend void Dziecko::coutall();
public:
Osoba(string imie, string nazwisko, string kolorOczu):imie(imie), nazwisko(nazwisko), kolorOczu(kolorOczu){};
void coutall(){
cout << "Imie: " << imie << endl; //
cout << "Nazwisko: " << nazwisko << endl;
cout << "Kolor oczu: " << kolorOczu << endl;
}
};
class Dziecko: public Osoba{
private:
string nazwaPrzedszkola, choroba;
typedef Osoba super;
public:
Dziecko(string imie, string nazwisko, string kolorOczu, string nazwaPrzedszkola, string choroba):super(imie, nazwisko, kolorOczu), nazwaPrzedszkola(nazwaPrzedszkola), choroba(choroba){};
void coutall(){
cout << super::imie; // this one gets underlined.
cout << "Nazwa przedszkola: " << nazwaPrzedszkola << endl;
cout << "Choroba: " << choroba << endl;
}
};
and this line is underlined:
cout << super::imie;
It says it's inaccessible. But in my opinion it is - I "friended" this method. I tried a forward declaration of class Dziecko - didn't work, either. What am I doing wrong?