GM6000 Digital Heater Controller Branch: main
SDX-1330
IsEos.h
Go to the documentation of this file.
1#ifndef Cpl_Io_IsEos_h_
2#define Cpl_Io_IsEos_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16
17///
18namespace Cpl {
19///
20namespace Io {
21
22/** This abstract class defines a isEos() operation that is intended to be used
23 Input and Output streams. Since InputOutput streams are supported we end up
24 with 2 isEos() methods when the InputOutput class inherits from Input and
25 Output interfaces. This causes basically a 'diamond' problem. By making
26 the isEof() it owns interface and a parent class - we can use the 'virtual
27 mechanism' in C++ to ensure that for InputOutput classes there is one and
28 only one isEos() method.
29 */
30class IsEos
31{
32public:
33 /** This method returns true if End-of-Stream was encountered on the stream.
34 */
35 virtual bool isEos() = 0;
36
37
38public:
39 /// Lets the make the destructor virtual
40 virtual ~IsEos() {}
41
42};
43
44}; // end namespaces
45};
46#endif // end header latch
This abstract class defines a isEos() operation that is intended to be used Input and Output streams.
Definition IsEos.h:31
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.
Definition IsEos.h:40
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20