Re: [Doxygen-develop] Not everyone c++ constructions has been parsed well
Brought to you by:
dimitri
From: Zebrik.0xFF <zeb...@gm...> - 2008-05-21 13:38:23
|
Marcus Lindblom ?????: > > >> is not valid C++ in template defs. use > > . (or was that a typo?) > > (It might be that VS 2005 swallows it, but it's not ok.) > > /Marcus > compiler output: 1> xxxx.h(18) : see declaration of 'iA' 1> xxxx.h(93) : see reference to class template instantiation 'C<T1,T2>' being compiled 1>yyyy.h(18) : error C2955: 'iA' : ****use of class template requires template argument list*** *So You think that it is a M$ feature ? So how to do a inheritance from template classes iA and iB to template class C ??: template <class T1,class T2> class C : public iA //like this? , public iB //like this? {...}; |