| 117 | } |
| 118 | |
| 119 | DotEdge::DotEdge(std::ostream& stream, LayerGuid fromNodeId, LayerGuid toNodeId) |
| 120 | : DotBase(stream) |
| 121 | { |
| 122 | std::stringstream ss; |
| 123 | ss << Indent(4) << fromNodeId << " -> " << toNodeId << " "; |
| 124 | GetStream() << ss.str(); |
| 125 | |
| 126 | m_Attributes = std::make_unique<DotAttributeSet>(stream); |
| 127 | } |
| 128 | |
| 129 | DotEdge::~DotEdge() |
| 130 | { |