Doxygen
FileListContext::Private类 参考
+ 类 FileListContext::Private 继承关系图:
+ FileListContext::Private 的协作图:

Public 成员函数

void addFiles (const FileNameLinkedMap &fnMap)
 
- Public 成员函数 继承自 GenericNodeListContext
 GenericNodeListContext ()
 
uint count () const
 Returns the number of elements in the list 更多...
 
TemplateVariant at (uint index) const
 Returns the element at index position index. 更多...
 
TemplateListIntf::ConstIteratorPtr createIterator () const
 Creates a new iterator for this list. 更多...
 
void append (const TemplateVariant &ctn)
 
bool isEmpty () const
 
- Public 成员函数 继承自 TemplateListIntf
virtual ~TemplateListIntf ()
 Destroys the list 更多...
 

额外继承的成员函数

- Public 类型 继承自 TemplateListIntf
using ConstIteratorPtr = std::unique_ptr< ConstIterator >
 
- 静态 Public 成员函数 继承自 GenericNodeListContext
static TemplateListIntfPtr alloc ()
 

详细描述

在文件 context.cpp6329 行定义.

成员函数说明

◆ addFiles()

void FileListContext::Private::addFiles ( const FileNameLinkedMap fnMap)
inline

在文件 context.cpp6332 行定义.

6333  {
6334  // TODO: if FULL_PATH_NAMES is enabled, the ordering should be dir+file
6335  for (const auto &fn : fnMap)
6336  {
6337  for (const auto &fd : *fn)
6338  {
6339  bool doc = fd->isLinkableInProject();
6340  bool src = fd->generateSourceFile();
6341  bool nameOk = !fd->isDocumentationFile();
6342  if (nameOk && (doc || src) && !fd->isReference())
6343  {
6344  append(FileContext::alloc(fd.get()));
6345  }
6346  }
6347  }
6348  }

引用了 FileContext::alloc() , 以及 GenericNodeListContext::append().


该类的文档由以下文件生成:
GenericNodeListContext::append
void append(const TemplateVariant &ctn)
Definition: context.cpp:220
FileContext::alloc
static TemplateStructIntfPtr alloc(const FileDef *fd)
Definition: context.h:260