| 11 | using namespace icinga; |
| 12 | |
| 13 | void ConfigWriter::EmitBoolean(std::ostream& fp, bool val) |
| 14 | { |
| 15 | fp << (val ? "true" : "false"); |
| 16 | } |
| 17 | |
| 18 | void ConfigWriter::EmitNumber(std::ostream& fp, double val) |
| 19 | { |
nothing calls this directly
no outgoing calls
no test coverage detected