| 37 | namespace LibSerial |
| 38 | { |
| 39 | SerialStream::SerialStream() : std::iostream(nullptr) |
| 40 | { |
| 41 | this->flush() ; |
| 42 | } |
| 43 | |
| 44 | SerialStream::SerialStream(const std::string& fileName, |
| 45 | const BaudRate& baudRate, |
nothing calls this directly
no test coverage detected