Template Class with pure virtual methodYou're right, there is no polymorphism at work here. I wanted to find an overrider for fun in the de...
Template Class with pure virtual methodI found the solution to my problem! The point in my initially posted example is that the [i]const[/i...
Template Class with pure virtual methodHi anders43, thanks, but I found this solution as well. It works also if the specification is [cod...
Template Class with pure virtual methodThanks for your reply kbw! I removed the second virtual function. It was only for explaination that ...
Template Class with pure virtual method[code] template<typename T> class A{ public: virtual void fun(const T&) = 0; }; class B : p...
This user does not accept Private Messages