GM6000 Digital Heater Controller Branch: main
SDX-1330
Close.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Close_h_
2#define Cpl_Io_Close_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#include "Cpl/Container/Item.h"
16
17
18///
19namespace Cpl {
20///
21namespace Io {
22
23/** This abstract class defines a close operation that is intended to be used
24 Input and Output streams/files. Since InputOutput streams/files are
25 supported we end up with 2 close() method when the InputOutput class
26 inherits from Input and Output interfaces. This causes basically a
27 'diamond' problem. By making the close() it owns interface and a parent
28 class - we can use the 'virtual mechanism' in C++ to ensure that for
29 InputOutput classes there is one and only one close() method.
30 */
32{
33public:
34 /** This method will close the stream. The result of closing the
35 stream is dependent on the actual concrete stream/platform.
36 */
37 virtual void close() = 0;
38
39
40public:
41 /// Lets the make the destructor virtual
42 virtual ~Close() {}
43
44};
45
46}; // end namespaces
47};
48#endif // end header latch
This class is used by the Container classes to implement a various types of singly linked containers.
Definition Item.h:33
This abstract class defines a close operation that is intended to be used Input and Output streams/fi...
Definition Close.h:32
virtual ~Close()
Lets the make the destructor virtual.
Definition Close.h:42
virtual void close()=0
This method will close the stream.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20