paulbergmann_mpstubs/test-stream/console_out.cc

10 lines
126 B
C++
Raw Normal View History

2023-09-22 11:19:29 +02:00
#include "console_out.h"
2023-10-28 13:42:17 +02:00
ConsoleOut():OutputStream() {}
void flush() {
for(char output : buffer) {
putchar(output);
}
}