Possible to inherit from variadic specified classes?

23 Views Asked by At

Is it possible to do something like:

template<class T...>
class multi : public t1, public t2, ... {
...
};

Where t1 is the first template argument, t2 the second, and so forth.

Thanks in advance, and I will clean up the formatting when I get access to a real computer.

0

There are 0 best solutions below