![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This abstract class defines a close operation that is intended to be used Input and Output streams/files. More...
This abstract class defines a close operation that is intended to be used Input and Output streams/files.
Since InputOutput streams/files are supported we end up with 2 close() method when the InputOutput class inherits from Input and Output interfaces. This causes basically a 'diamond' problem. By making the close() 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 close() method.
#include <Close.h>
Public Member Functions | |
virtual void | close ()=0 |
This method will close the stream. | |
virtual | ~Close () |
Lets the make the destructor virtual. | |
![]() | |
bool | insert_ (void *newContainerPtr) |
Helper method to trap when inserting an item in multiple containers. | |
bool | isInContainer_ (const void *containerPtr) const noexcept |
Returns 'true' if the instance is in the specified container. | |
Additional Inherited Members | |
![]() | |
static void | remove_ (Item *itemPtr) noexcept |
Helper method to do the proper 'clean-up' for the multiple-containers-error-trap when removing an item from a container. | |
![]() | |
void * | m_nextPtr_ |
The link field. | |
void * | m_inListPtr_ |
Debug field. | |
![]() | |
Item () | |
Constructor. | |
Item (const char *) | |
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated. | |
|
inlinevirtual |
Lets the make the destructor virtual.
|
pure virtual |
This method will close the stream.
The result of closing the stream is dependent on the actual concrete stream/platform.
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::Stdio::StdErr, Cpl::Io::Stdio::StdIn, Cpl::Io::Stdio::StdOut, Cpl::Io::Tcp::InputOutput, and Cpl::Io::TeeOutput.