Doxygen
Loading...
Searching...
No Matches
ConceptLinkedRefMap Class Reference

#include <src/conceptdef.h>

Inheritance diagram for ConceptLinkedRefMap:
Collaboration diagram for ConceptLinkedRefMap:

Public Member Functions

bool declVisible () const
void writeDeclaration (OutputList &ol, const QCString &header, bool localNames) const
Public Member Functions inherited from LinkedRefMap< ConceptDef >
const ConceptDeffind (const std::string &key) const
bool add (const char *k, ConceptDef *obj)
bool prepend (const char *k, ConceptDef *obj)
bool del (const QCString &key)
Ptroperator[] (size_t pos)
iterator begin ()
iterator end ()
reverse_iterator rbegin ()
reverse_iterator rend ()
bool empty () const
size_t size () const
void clear ()

Additional Inherited Members

Public Types inherited from LinkedRefMap< ConceptDef >
using Ptr
using Vec
using iterator
using const_iterator
using reverse_iterator
using const_reverse_iterator

Detailed Description

Definition at line 73 of file conceptdef.h.

Member Function Documentation

◆ declVisible()

bool ConceptLinkedRefMap::declVisible ( ) const

Definition at line 737 of file conceptdef.cpp.

738{
739 bool hideUndocClasses = Config_getBool(HIDE_UNDOC_CLASSES);
740 for (const auto &cd : *this)
741 {
742 bool isLink = cd->isLinkable();
743 if (isLink || !hideUndocClasses)
744 {
745 return true;
746 }
747 }
748 return false;
749}
#define Config_getBool(name)
Definition config.h:33

References Config_getBool.

◆ writeDeclaration()

void ConceptLinkedRefMap::writeDeclaration ( OutputList & ol,
const QCString & header,
bool localNames ) const

Definition at line 751 of file conceptdef.cpp.

752{
753 bool found=FALSE;
754 for (const auto &cd : *this)
755 {
756 cd->writeDeclarationLink(ol,found,header,localNames);
757 }
758 if (found) ol.endMemberList();
759}
void endMemberList()
Definition outputlist.h:483
#define FALSE
Definition qcstring.h:34

References OutputList::endMemberList(), and FALSE.


The documentation for this class was generated from the following files: