I cannot figure this out. I need to have an abstract template base class, which is the following:
template class Dendrite { public: Den
Yes it is possible. Just make sure to provide virtual functions, and virtual destructor. In addition, you can use typeid to get the actual type (as well as dynamic_cast to check the type)