E
estrmich
I have a template class, say template<typename T> class A {...}. Now,
in the program I instantiate several As of different types: A<int>,
A<double>, A<string> etc. How can I store them in a container?
Thanks.
in the program I instantiate several As of different types: A<int>,
A<double>, A<string> etc. How can I store them in a container?
Thanks.