10 lines
201 B
C++
10 lines
201 B
C++
#include "OutputDevice.h"
|
|
|
|
OutputDevice::OutputDevice(std::ostream& out) : output(out) {
|
|
}
|
|
|
|
void OutputDevice::write(uint8_t value) {
|
|
char c = (char)value;
|
|
output.put(c);
|
|
output.flush();
|
|
}
|