[Doxygen-develop] C++ Namespace Alias Parsing
Brought to you by:
dimitri
From: Christoph H. <chr...@gm...> - 2009-02-09 15:33:15
|
Hi, are there any known issues related to namespace aliasing with doxygen 1.5.8? In my examples I'm shortening namespaces using namespace aliasing. Suppose I have a namespace ::Foo::Bar. Now I'd like to shorten this by namespace FB = ::Foo::Bar; and use it later (within the same file and method) by class X : FB::Base { // ... }; The problem is that FB::Base is not linked to ::Foo::Bar::Base automatically. I guess namespace aliasing is not parsed by doxygen? Best regards, Christoph |