| 128 | } |
| 129 | |
| 130 | void cmGraphVizWriter::OnItem(cmLinkItem const& item) |
| 131 | { |
| 132 | if (this->ItemExcluded(item)) { |
| 133 | return; |
| 134 | } |
| 135 | |
| 136 | this->NodeNames[item.AsStr()] = |
| 137 | cmStrCat(this->GraphNodePrefix, this->NextNodeId); |
| 138 | ++this->NextNodeId; |
| 139 | |
| 140 | this->WriteNode(this->GlobalFileStream, item); |
| 141 | } |
| 142 | |
| 143 | std::unique_ptr<cmGeneratedFileStream> cmGraphVizWriter::CreateTargetFile( |
| 144 | cmLinkItem const& item, std::string const& fileNameSuffix) |
no test coverage detected