
22 Jun
2007
22 Jun
'07
4:05 p.m.
Seweryn Habdank-Wojewódzki said: (by the date of Fri, 22 Jun 2007 09:43:00 +0200) wouldn't it help if you just add a template declaration beforehand? template < typename T > struct Bar; or sth like that.
class Foo { public: // ... typedef Bar<A> BA; typedef int A; };
template < typename T > struct Bar { T t_; };
-- Janek Kozicki |