johnr Starting Member
1 Posts
class A { public: int var; }; class B { public: template<class T> T *Get() { return(new A()); } }; void main(void) { B b; b.Get<A>()-> /* no intellisense here */ }
feline Whole Tomato Software
United Kingdom 19024 Posts
support Whole Tomato Software
5566 Posts