| 1398 | // ---------------------------------------------------------------------------------------- |
| 1399 | |
| 1400 | void write_as_xml ( |
| 1401 | const function_record& rec, |
| 1402 | ostream& fout |
| 1403 | ) |
| 1404 | { |
| 1405 | fout << " <function>\n"; |
| 1406 | fout << " <name>" << add_entity_ref(rec.name) << "</name>\n"; |
| 1407 | fout << " <scope>" << add_entity_ref(rec.scope) << "</scope>\n"; |
| 1408 | fout << " <declaration>" << add_entity_ref(rec.declaration) << "</declaration>\n"; |
| 1409 | fout << " <file>" << flip_slashes(add_entity_ref(rec.file)) << "</file>\n"; |
| 1410 | fout << " <comment>" << add_entity_ref(rec.comment) << "</comment>\n"; |
| 1411 | fout << " </function>\n"; |
| 1412 | } |
| 1413 | |
| 1414 | // ---------------------------------------------------------------------------------------- |
| 1415 |
no test coverage detected