Problem with template specialization and template template parameters
I have a class Helper: template <typename T, template <typename> E> class Helper { ... }; I have another class template, Exposure, which is to inherit from Helper while passing itself as the template template parameter E. I also need to specialize Exposure. Thus I want to write something like the following: template <> class Ex...