Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
class A
{
public:
int x;
};
class B : protected A
{
//has x, but isn't acessisible to the outside world
//(it is now a protected member.)
};
class C: public B
{
public:
const int getX(){return x;}
void setX(int a){x=a;}
};