I have multiple .cpp files which are printing out and I want to redirect this to a string. The structure of my project is: a main file which calls the functions from another files and the another files. If I have one .cpp file it is easy with stringstream, but if there are multiple files how can I resolve that?
Main.cpp:
#include "Second.h"
int main() {
std::string buffer = "First line";
printOut(buffer);
std::cout << "Hello world" << std::endl;
}
Second.h:
#include <string>
void printOut(std::string buffer);
Second.cpp
#include "Second.h"
void printOut(std::string buffer) {
std::cout << buffer << std::endl;
}
In this case the string should look like this:
redirectedString = First line\nHello World\n
Output to the standard streams can be intercepted by using a suitable stream buffer. For example:
When using multiple threads you may want to use thread local buffers to avoid having data races. The called function would actively transfer the buffer to wherever it is needed.