| 117 | } |
| 118 | |
| 119 | void cmXMLWriter::PreAttribute() |
| 120 | { |
| 121 | assert(this->ElementOpen); |
| 122 | this->ConditionalLineBreak(this->BreakAttrib); |
| 123 | if (!this->BreakAttrib) { |
| 124 | this->Output << ' '; |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | void cmXMLWriter::PreContent() |
| 129 | { |
no test coverage detected