Processes the specified input header file into the output file
| 171 | |
| 172 | /// Processes the specified input header file into the output file |
| 173 | void ProcessCFile(const AString & a_CFileIn, const AString & a_CFileOut) |
| 174 | { |
| 175 | cProcessor p(a_CFileOut); |
| 176 | if (!p.IsGood()) |
| 177 | { |
| 178 | std::cerr << "Cannot open output file " << a_CFileOut << "." << std::endl; |
| 179 | return; |
| 180 | } |
| 181 | p.ProcessFile(a_CFileIn); |
| 182 | } |
| 183 | |
| 184 | |
| 185 |
no test coverage detected