diff options
Diffstat (limited to 'include/Support/GraphWriter.h')
-rw-r--r-- | include/Support/GraphWriter.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/Support/GraphWriter.h b/include/Support/GraphWriter.h index 0a7576c..7783b46 100644 --- a/include/Support/GraphWriter.h +++ b/include/Support/GraphWriter.h @@ -72,7 +72,11 @@ public: O << DOTTraits::getGraphProperties(G); O << "\n"; + // Emit all of the nodes in the graph... writeNodes(); + + // Output any customizations on the graph + DOTTraits::addCustomGraphFeatures(G, *this); } ~GraphWriter() { |