Skip to main content

The ConceptLinkedRefMap Class Reference

Declaration

class ConceptLinkedRefMap { ... }

Included Headers

#include <src/conceptdef.h>

Base class

classLinkedRefMap<T, Hash, KeyEqual, Map>

Container class representing a vector of objects with keys. More...

Public Member Functions Index

booldeclVisible () const
voidwriteDeclaration (OutputList &ol, const QCString &header, bool localNames) const

Definition at line 73 of file conceptdef.h.

Public Member Functions

declVisible()

bool ConceptLinkedRefMap::declVisible ()

Declaration at line 76 of file conceptdef.h, definition at line 709 of file conceptdef.cpp.

710{
711 bool hideUndocClasses = Config_getBool(HIDE_UNDOC_CLASSES);
712 for (const auto &cd : *this)
713 {
714 bool isLink = cd->isLinkable();
715 if (isLink || !hideUndocClasses)
716 {
717 return true;
718 }
719 }
720 return false;
721}

Reference Config_getBool.

writeDeclaration()

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

Declaration at line 77 of file conceptdef.h, definition at line 723 of file conceptdef.cpp.

723void ConceptLinkedRefMap::writeDeclaration(OutputList &ol,const QCString &header,bool localNames) const
724{
725 bool found=FALSE;
726 for (const auto &cd : *this)
727 {
728 cd->writeDeclarationLink(ol,found,header,localNames);
729 }
730 if (found) ol.endMemberList();
731}

References OutputList::endMemberList and FALSE.


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


Generated via doxygen2docusaurus by Doxygen 1.14.0.