I got the following problem: There is an abstract base class, and two other abstract classes which virtually inherit from the base class, and as a conclusion have to call the Constructor of it, with all the needed arguments.
But now, I got a “normal” class which does inherit both second order classes, and therefor has to call the baseclass-constructor on its own (as the base class is inherited virtually from both the second order classes), but both of the second order constructors take arguments to pass on to the base class constructor.
Is it possible to somhow implement the constructors in a way that there will be no need to pass those, in that case unused, arguments?
I hope I was able to precisely describe my problem, if there are any questions I will be happy to answer them.
FINALLY found it.
So, pass the arguments. They’ll be ignored anyway. Makes things really simple!