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 B {
public:
B(int i) { m_I = i; }
private:
int m_I;
};
class A {
public:
A() : m_B( 0 ) // <- constructor call for aggregate
// object
{}
protected:
B m_B;
};