diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2005-02-10 18:38:13 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2005-02-10 18:38:13 (GMT) |
commit | 11de530ba769e4e2735a20a74262380d51f8772f (patch) | |
tree | 654e62c3ea86e579f0642040b094a844d4e5223c /src/namespacedef.cpp | |
parent | c635cffd1d8bcf5bcbe90ce2c3c5fc3371e01a1c (diff) | |
download | Doxygen-11de530ba769e4e2735a20a74262380d51f8772f.zip Doxygen-11de530ba769e4e2735a20a74262380d51f8772f.tar.gz Doxygen-11de530ba769e4e2735a20a74262380d51f8772f.tar.bz2 |
Release-1.4.1-20050210
Diffstat (limited to 'src/namespacedef.cpp')
-rw-r--r-- | src/namespacedef.cpp | 77 |
1 files changed, 44 insertions, 33 deletions
diff --git a/src/namespacedef.cpp b/src/namespacedef.cpp index fab4850..8ced35a 100644 --- a/src/namespacedef.cpp +++ b/src/namespacedef.cpp @@ -516,7 +516,17 @@ void NamespaceDef::combineUsingRelations() void NamespaceSDict::writeDeclaration(OutputList &ol,bool localName) { - if (count()==0) return; + if (count()==0) return; // no namespaces in the list + + SDict<NamespaceDef>::Iterator ni(*this); + NamespaceDef *nd; + bool found=FALSE; + for (ni.toFirst();(nd=ni.current()) && !found;++ni) + { + if (nd->isLinkable()) found=TRUE; + } + if (!found) return; // no linkable namespaces in the list + // write list of namespaces ol.startMemberHeader(); bool javaOpt = Config_getBool("OPTIMIZE_OUTPUT_JAVA"); @@ -530,41 +540,42 @@ void NamespaceSDict::writeDeclaration(OutputList &ol,bool localName) } ol.endMemberHeader(); ol.startMemberList(); - SDict<NamespaceDef>::Iterator ni(*this); - NamespaceDef *nd; for (ni.toFirst();(nd=ni.current());++ni) { - ol.startMemberItem(0); - if (javaOpt) - { - ol.docify("package "); - } - else - { - ol.docify("namespace "); - } - ol.insertMemberAlign(); - QCString name; - if (localName) - { - name = nd->localName(); - } - else - { - name = nd->displayName(); - } - ol.writeObjectLink(nd->getReference(),nd->getOutputFileBase(),0,name); - if (!Config_getString("GENERATE_TAGFILE").isEmpty()) + if (nd->isLinkable()) { - Doxygen::tagFile << " <namespace>" << convertToXML(nd->name()) << "</namespace>" << endl; - } - ol.endMemberItem(); - if (!nd->briefDescription().isEmpty() && Config_getBool("BRIEF_MEMBER_DESC")) - { - ol.startMemberDescription(); - ol.parseDoc(nd->briefFile(),nd->briefLine(),nd,0,nd->briefDescription(),FALSE,FALSE); - ol.endMemberDescription(); - ol.newParagraph(); + ol.startMemberItem(0); + if (javaOpt) + { + ol.docify("package "); + } + else + { + ol.docify("namespace "); + } + ol.insertMemberAlign(); + QCString name; + if (localName) + { + name = nd->localName(); + } + else + { + name = nd->displayName(); + } + ol.writeObjectLink(nd->getReference(),nd->getOutputFileBase(),0,name); + if (!Config_getString("GENERATE_TAGFILE").isEmpty()) + { + Doxygen::tagFile << " <namespace>" << convertToXML(nd->name()) << "</namespace>" << endl; + } + ol.endMemberItem(); + if (!nd->briefDescription().isEmpty() && Config_getBool("BRIEF_MEMBER_DESC")) + { + ol.startMemberDescription(); + ol.parseDoc(nd->briefFile(),nd->briefLine(),nd,0,nd->briefDescription(),FALSE,FALSE); + ol.endMemberDescription(); + ol.newParagraph(); + } } } ol.endMemberList(); |