| 184 | } |
| 185 | |
| 186 | void ConfigWriter::EmitFunctionCall(std::ostream& fp, const String& name, const Array::Ptr& arguments) |
| 187 | { |
| 188 | EmitIdentifier(fp, name, false); |
| 189 | fp << "("; |
| 190 | EmitArrayItems(fp, 0, arguments); |
| 191 | fp << ")"; |
| 192 | } |
| 193 | |
| 194 | String ConfigWriter::EscapeIcingaString(const String& str) |
| 195 | { |
nothing calls this directly
no outgoing calls
no test coverage detected