![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This abstract class defines a isEos() operation that is intended to be used Input and Output streams. More...
This abstract class defines a isEos() operation that is intended to be used Input and Output streams.
Since InputOutput streams are supported we end up with 2 isEos() methods when the InputOutput class inherits from Input and Output interfaces. This causes basically a 'diamond' problem. By making the isEof() it owns interface and a parent class - we can use the 'virtual mechanism' in C++ to ensure that for InputOutput classes there is one and only one isEos() method.
#include <IsEos.h>
Public Member Functions | |
virtual bool | isEos ()=0 |
This method returns true if End-of-Stream was encountered on the stream. | |
virtual | ~IsEos () |
Lets the make the destructor virtual. | |
|
inlinevirtual |
Lets the make the destructor virtual.
|
pure virtual |
This method returns true if End-of-Stream was encountered on the stream.
Implemented in Cpl::Io::AtomicOutput< CONTEXT >, Cpl::Io::File::Input, Cpl::Io::File::InputOutput, Cpl::Io::File::Null, Cpl::Io::File::Output, Cpl::Io::Null, Cpl::Io::Ram::InputOutput, Cpl::Io::Serial::Adafruit::Nrf5::BLE::InputOutput, Cpl::Io::Serial::Adafruit::Nrf5::InputOutput, Cpl::Io::Serial::Arduino::InputOutput, Cpl::Io::Serial::PhonyStdio::InputOutput, Cpl::Io::Serial::ST::M32F4::InputOutput, Cpl::Io::Socket::InputOutput, Cpl::Io::Stdio::Input_, Cpl::Io::Stdio::InputOutput_, Cpl::Io::Stdio::Output_, Cpl::Io::Tcp::InputOutput, and Cpl::Io::TeeOutput.