Not everyone c++ constructions has been parsed well

"Zebrik.0xFF" <[email protected]>
Newsgroups gmane.text.doxygen.devel
Message-ID <[email protected]>
Hello.
I have doxygen Version: 1.5.5 for Win32

It seems that, i can't get all reversed documentation using doxygen.

See example:

template <class T1,class T2>
class iA
{...};

template <class T>
class iB
{...};

template <class T1,class T2>
class C
  : public iA<T1,T2> //doxy error, but c++ eats
  , public iB<C<T1,T2>> //doxy error, but c++ eats
{...};

My MSVS.NET 2005 SP1 works well with it.
But doxy generate nothing about class C. Only abount .h and .cpp files 
containing it. No class diagramms, no relations.

My doxygen works well when my code looks like, but c++ reports errors:

template <class T1,class T2>
class iA
{...};

template <class T>
class iB
{...};

template <class T1,class T2>
class C
  : public iA //c++ error, but doxy eats
  , public iB //c++ error, but doxy eats
{...};

Question:
Is it doxygen bug, or i'am a dummy?

ps: sorry about my english localisation :)

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft 
Defy all challenges. Microsoft(R) Visual Studio 2008. 
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.