I want to declarate a class object of Class B inside of Class A in a header file, like:
// test.h
class A {
public:
B b;
};
but lets say B has no default Constructor and the required parameters are not known yet (in header file). Which possibilities in c++ exist to declarate a class instance in another class without initializing it at that moment.