Tagged Questions
1
vote
2answers
321 views
redirect standard output to a file using multiple thread
I tried to redirect standart output (cout) to a file, for debugging purposes
std::ofstream traceFile;
traceFile.open("c:/path/file.txt");
std::streambuf* fileBuff = traceFile.rdbuf();
...
0
votes
3answers
162 views
Migrating C++ code to use standard headers. Now getting: reference to 'ostream' ambiguous
I've been migrating some code to alter the declarations of headers, since they're not included in my Ubuntu environment. I've finally changed all of the files but have been getting the following ...
0
votes
4answers
2k views
creating an ostream
I am trying to create a c++ ostream for educational reasons. My test will be creating an ostream that acts like a ofstream would except instead of writing to a file it would write to a deque or vector ...