I have a class F which needs to implement two functions f() and g(). I use two different class to implement these function.
class Base {public: virtual void f(); virtual void g(); };
class A : public virtual Base { void f(){/***/} };
class B : public virtual Base { void g(){/***/} };
f() needs to call g() or vice versa, which would be fine using this design. I need to have several implementation for A and B classes, let's say A1 and A2, B1 and B2. For example if I want to use A1 and B2 implementation:
class Test : public A1, public B2 {};
My Question is: How can I select implementation in run-time? If I want to create an object of class Test and want to select A and B class based on a parameter in my main function, how can I do that?
With virtual classes the only feasible option would be to define all possible permutations like:
and to have some fabric function like this
But I would consider set of free functions instead
and store pointers to them in Base.