Doxygen
DotDirPropertyBuilder类 参考

Builder helper to create instances of the DotDirProperty struct 更多...

+ DotDirPropertyBuilder 的协作图:

Public 成员函数

DotDirPropertyBuildermakeIncomplete (bool b=true)
 
DotDirPropertyBuildermakeOrphaned (bool b=true)
 
DotDirPropertyBuildermakeTruncated (bool b=true)
 
DotDirPropertyBuildermakeOriginal (bool b=true)
 
DotDirPropertyBuildermakePeripheral (bool b=true)
 
 operator DotDirProperty ()
 

Private 属性

DotDirProperty m_property
 

详细描述

Builder helper to create instances of the DotDirProperty struct

在文件 dotdirdeps.cpp46 行定义.

成员函数说明

◆ makeIncomplete()

DotDirPropertyBuilder& DotDirPropertyBuilder::makeIncomplete ( bool  b = true)
inline

在文件 dotdirdeps.cpp49 行定义.

49 { m_property.isIncomplete=b; return *this; }

引用了 DotDirProperty::isIncomplete , 以及 m_property.

◆ makeOriginal()

DotDirPropertyBuilder& DotDirPropertyBuilder::makeOriginal ( bool  b = true)
inline

在文件 dotdirdeps.cpp52 行定义.

52 { m_property.isOriginal =b; return *this; }

引用了 DotDirProperty::isOriginal , 以及 m_property.

被这些函数引用 drawTree().

◆ makeOrphaned()

DotDirPropertyBuilder& DotDirPropertyBuilder::makeOrphaned ( bool  b = true)
inline

在文件 dotdirdeps.cpp50 行定义.

50 { m_property.isOrphaned =b; return *this; }

引用了 DotDirProperty::isOrphaned , 以及 m_property.

◆ makePeripheral()

DotDirPropertyBuilder& DotDirPropertyBuilder::makePeripheral ( bool  b = true)
inline

在文件 dotdirdeps.cpp53 行定义.

53 { m_property.isPeripheral=b; return *this; }

引用了 DotDirProperty::isPeripheral , 以及 m_property.

◆ makeTruncated()

DotDirPropertyBuilder& DotDirPropertyBuilder::makeTruncated ( bool  b = true)
inline

在文件 dotdirdeps.cpp51 行定义.

51 { m_property.isTruncated =b; return *this; }

引用了 DotDirProperty::isTruncated , 以及 m_property.

◆ operator DotDirProperty()

DotDirPropertyBuilder::operator DotDirProperty ( )
inline

在文件 dotdirdeps.cpp54 行定义.

54 { return std::move(m_property); }

引用了 m_property.

类成员变量说明

◆ m_property

DotDirProperty DotDirPropertyBuilder::m_property
private

该类的文档由以下文件生成:
DotDirProperty::isIncomplete
bool isIncomplete
true if not all successors of a cluster are drawn
Definition: dotdirdeps.cpp:38
DotDirProperty::isOrphaned
bool isOrphaned
true if parent is not drawn
Definition: dotdirdeps.cpp:39
DotDirProperty::isTruncated
bool isTruncated
true has successors, none is drawn
Definition: dotdirdeps.cpp:40
DotDirProperty::isPeripheral
bool isPeripheral
true if no successor of parent of original directory
Definition: dotdirdeps.cpp:42
DotDirPropertyBuilder::m_property
DotDirProperty m_property
Definition: dotdirdeps.cpp:56
DotDirProperty::isOriginal
bool isOriginal
true if is the directory for which the graph is drawn
Definition: dotdirdeps.cpp:41