GM6000 Digital Heater Controller Branch: main
SDX-1330
List of all members | Public Member Functions
Cpl::Io::Close Class Referenceabstract

This abstract class defines a close operation that is intended to be used Input and Output streams/files. More...

Detailed Description

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>

Inheritance diagram for Cpl::Io::Close:
[legend]
Collaboration diagram for Cpl::Io::Close:
[legend]

Public Member Functions

virtual void close ()=0
 This method will close the stream.
 
virtual ~Close ()
 Lets the make the destructor virtual.
 
- Public Member Functions inherited from Cpl::Container::Item
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 Public Member Functions inherited from Cpl::Container::Item
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.
 
- Public Attributes inherited from Cpl::Container::Item
voidm_nextPtr_
 The link field.
 
voidm_inListPtr_
 Debug field.
 
- Protected Member Functions inherited from Cpl::Container::Item
 Item ()
 Constructor.
 
 Item (const char *)
 Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated.
 

Constructor & Destructor Documentation

◆ ~Close()

virtual Cpl::Io::Close::~Close ( )
inlinevirtual

Lets the make the destructor virtual.

Member Function Documentation

◆ close()

virtual void Cpl::Io::Close::close ( )
pure virtual

The documentation for this class was generated from the following file: