Simpelt nedarvnings problem
class A{
private countA;
void countUP(void);
{
this->countA++
}
}
class b : public A
{
countB;
}
obj_b.countUP() ...
Jeg ønsker at nedarve funktionen fra A og når jeg kalder obj_b.countUP() skal det være countB der tælles op isteder for countA