Doxygen
Loading...
Searching...
No Matches
pagedef.h File Reference
#include "definition.h"
Include dependency graph for pagedef.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  PageDef
 A model of a page symbol. More...
class  PageLinkedMap
class  PageLinkedRefMap

Functions

std::unique_ptr< PageDefcreatePageDef (const QCString &f, int l, const QCString &n, const QCString &d, const QCString &t)
PageDeftoPageDef (Definition *d)
const PageDeftoPageDef (const Definition *d)

Function Documentation

◆ createPageDef()

std::unique_ptr< PageDef > createPageDef ( const QCString & f,
int l,
const QCString & n,
const QCString & d,
const QCString & t )

Definition at line 80 of file pagedef.cpp.

81{
82 return std::make_unique<PageDefImpl>(f,l,n,d,t);
83}

Referenced by addRelatedPage(), PageDef::addSectionsToIndex(), buildExampleList(), and findMainPage().

◆ toPageDef() [1/2]

const PageDef * toPageDef ( const Definition * d)

Definition at line 486 of file pagedef.cpp.

487{
488 return (d && typeid(*d) == typeid(PageDefImpl)) ? static_cast<const PageDef*>(d) : nullptr;
489}
A model of a page symbol.
Definition pagedef.h:26

◆ toPageDef() [2/2]