| 3429 | } |
| 3430 | |
| 3431 | void StyledWriter::pushValue(const std::string &value) { |
| 3432 | if (addChildValues_) |
| 3433 | childValues_.push_back(value); |
| 3434 | else |
| 3435 | document_ += value; |
| 3436 | } |
| 3437 | |
| 3438 | void StyledWriter::writeIndent() { |
| 3439 | if (!document_.empty()) { |
nothing calls this directly
no outgoing calls
no test coverage detected