| 12190 | public: |
| 12191 | FileCloser(FILE *to_be_closed) : m_file(to_be_closed) {} |
| 12192 | ~FileCloser() |
| 12193 | { |
| 12194 | if (m_file != NULL) |
| 12195 | fclose(m_file); |
| 12196 | } |
| 12197 | }; |
| 12198 | |
| 12199 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected