#include <term.h>


Definition at line 45 of file term.h.
Public Member Functions | |
| virtual | ~IWriter () |
| virtual bool | writeAck ()=0 |
| write "A" which means accomplished | |
| virtual bool | writeByte (unsigned char data)=0 |
| write hex-byte to term | |
| virtual bool | writeWord (unsigned int data)=0 |
| write hex-word to term | |
| virtual bool | writeText (const std::string &data)=0 |
| write string to term | |
| virtual bool | hasError () const =0 |
| virtual bool writeAck | ( | ) | [pure virtual] |
write "A" which means accomplished
Implemented in Term.
Referenced by Core::dispatch().

| virtual bool writeByte | ( | unsigned char | data | ) | [pure virtual] |
write hex-byte to term
Implemented in Term.
Referenced by Core::dispatch().

| virtual bool writeWord | ( | unsigned int | data | ) | [pure virtual] |
write hex-word to term
Implemented in Term.
Referenced by Core::dispatch().

| virtual bool writeText | ( | const std::string & | data | ) | [pure virtual] |
write string to term
Implemented in Term.
Referenced by termWrite().

| virtual bool hasError | ( | ) | const [pure virtual, inherited] |
Return true if any error was detected.
Implemented in Core, SyncReader, FlexScanner, Term, and FlexVScan.
Referenced by SyncReader::hasError().

1.5.4