Hi,
let's say I'm using a templated class with something simple like
template <class T>
class MyClass
and I want to use elements from T's namespace, for example T could be string, and i wanted to use
T::const_iterator myIterator;
or something like that. How do I achieve that ? Probably it's not possible or very simple, but I'm not getting any idea.
Thanks for answers !