Tagged Questions
3
votes
2answers
4k views
Writing stringstream contents into ofstream
I'm currently using a std::ofstream a function and a std::stringstream
std::ofstream outFile;
outFile.open(output_file);
Then I call a function
GetHolesResults(..., std::ofstream &outFile){
...