GM6000 Digital Heater Controller Branch: main
SDX-1330
InputOutputApi.h
Go to the documentation of this file.
1#ifndef Cpl_Io_File_InputOutputApi_h_
2#define Cpl_Io_File_InputOutputApi_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
17#include "Cpl/Io/InputOutput.h"
18
19///
20namespace Cpl {
21///
22namespace Io {
23///
24namespace File {
25
26
27/** This abstract class defines the interface for a Random Access Input
28 Output File.
29
30 NOTE: All the read/write operations return 'false' if an error occurred,
31 this INCLUDES the end-of-file condition (which is error when dealing
32 with streams). To differentiate between a true error and EOF, the
33 client must call isEof().
34 */
37
38{
39public:
40 /** Returns a 'stream proxy' for the File instance that is of type: Cpl::Io::InputOutput.
41 This method is needed because an Cpl::Io::File::InputOutputApi does NOT
42 inherit from Cpl::Io::InputOutput.
43 */
45
46};
47
48
49}; // end namespaces
50};
51};
52#endif // end header latch
This abstract class defines the interface for a Random Access Input File.
Definition InputApi.h:35
This abstract class defines the interface for a Random Access Input Output File.
Definition InputOutputApi.h:38
virtual Cpl::Io::InputOutput & getStream()=0
Returns a 'stream proxy' for the File instance that is of type: Cpl::Io::InputOutput.
This abstract class defines the interface for a Random Access Input File.
Definition OutputApi.h:35
This abstract class defines a interface for operating on an input-output stream (example of a stream ...
Definition InputOutput.h:30
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20