| 106 | } |
| 107 | |
| 108 | cmGraphVizWriter::cmGraphVizWriter(std::string const& fileName, |
| 109 | cmGlobalGenerator const* globalGenerator) |
| 110 | : FileName(fileName) |
| 111 | , GlobalFileStream(fileName) |
| 112 | , GraphName(globalGenerator->GetSafeGlobalSetting("CMAKE_PROJECT_NAME")) |
| 113 | , GraphHeader("node [\n fontsize = \"12\"\n];") |
| 114 | , GraphNodePrefix("node") |
| 115 | , GlobalGenerator(globalGenerator) |
| 116 | { |
| 117 | } |
| 118 | |
| 119 | cmGraphVizWriter::~cmGraphVizWriter() |
| 120 | { |
nothing calls this directly
no test coverage detected