I have a templated class Config<typename T, typename... U>
.
Now I want to make sure that all derived classes have a function void update(const T &t, U...);
I tried to do this using a virtual function, but this doesn't work, because the T
is part of the signature. So have can I force an implementation to provide that function?