I'm just making the jump from Java to C++. I'm fairly confident with C++ now, and I was trying to make a template class. Does C++ have a way to guarantee that the template argument extends a certain class? In Java, I can use class MyClass<? extends AnotherClass>. If not, is there a way around this limitation?
Thanks!