MCPcopy Create free account
hub / github.com/cuberite/cuberite / ProcessCFile

Function ProcessCFile

Tools/ToLuaDoxy/ToLuaDoxy.cpp:173–182  ·  view source on GitHub ↗

Processes the specified input header file into the output file

Source from the content-addressed store, hash-verified

171
172/// Processes the specified input header file into the output file
173void 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

Callers 1

mainFunction · 0.85

Calls 2

IsGoodMethod · 0.80
ProcessFileMethod · 0.45

Tested by

no test coverage detected