hey, got a quick question regarding template classes. I've made several data structures that I've found to be very useful (using template classes) but it's getting tiresome making a new explicit specialization every time I implement it in a new way. Such as if I want to do this in one of my programs:
Structure<std::string> temp;
I need to have this in the data structure .cpp file
template class Structure<std::string>;
Is there any way to avoid having to do this (the explicit specialization)? The standard containers (vectors, lists, etc) have this ability, I just couldn't find anywhere where it said how to do it. Thanks!
~J