MCPcopy Create free account
hub / github.com/Kitware/CMake / WriteConnection

Method WriteConnection

Source/cmGraphVizWriter.cxx:459–471  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

457}
458
459void cmGraphVizWriter::WriteConnection(cmGeneratedFileStream& fs,
460 cmLinkItem const& depender,
461 cmLinkItem const& dependee,
462 std::string const& edgeStyle)
463{
464 auto const& dependerName = depender.AsStr();
465 auto const& dependeeName = dependee.AsStr();
466
467 fs << " \"" << this->NodeNames[dependerName] << "\" -> \""
468 << this->NodeNames[dependeeName] << "\" "
469 << edgeStyle
470 << " // " << dependerName << " -> " << dependeeName << '\n';
471}
472
473bool cmGraphVizWriter::ItemExcluded(cmLinkItem const& item)
474{

Callers 2

VisitLinkMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected