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 89 of file conceptdef.h.

Member Function Documentation

◆ declVisible()

bool ConceptLinkedRefMap::declVisible ( ) const

Definition at line 792 of file conceptdef.cpp.

793{
794 bool hideUndocClasses = Config_getBool(HIDE_UNDOC_CLASSES);
795 for (const auto &cd : *this)
796 {
797 bool isLink = cd->isLinkable();
798 if (isLink || !hideUndocClasses)
799 {
800 return true;
801 }
802 }
803 return false;
804}
#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 806 of file conceptdef.cpp.

807{
808 bool found=FALSE;
809 for (const auto &cd : *this)
810 {
811 cd->writeDeclarationLink(ol,found,header,localNames);
812 }
813 if (found) ol.endMemberList();
814}
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: