|
serial
1.0
Cross-platform serial port library for C++
|
#include <serial.h>
Public Member Functions | |
| SerialExecption (const char *description) | |
| virtual const char * | what () const throw () |
| serial::SerialExecption::SerialExecption | ( | const char * | description | ) | [inline] |
: e_what_ (description) {}
| virtual const char* serial::SerialExecption::what | ( | ) | const throw () [inline, virtual] |
{
std::stringstream ss;
ss << "SerialException " << e_what_ << " failed.";
return ss.str ().c_str ();
}
1.8.0