I'm not quite sure how should it be written correctly. Can anyone help please?
class A {
public:
A(int x);
};
class B {
public:
B(float y);
};
class Launcher : public A, public B
{
Launcher() : A(int x), B(float y); // ?
};
int main()
{
Launcher(1, true);
}