GM6000 Digital Heater Controller Branch: main
SDX-1330
InputApi.h
Go to the documentation of this file.
1#ifndef Cpl_Io_File_InputApi_h_
2#define Cpl_Io_File_InputApi_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/Io/Input.h"
17
18
19///
20namespace Cpl {
21///
22namespace Io {
23///
24namespace File {
25
26
27/** This abstract class defines the interface for a Random Access Input File.
28 NOTE: All the read operations return 'false' if an error occurred, this
29 INCLUDES the end-of-file condition (which is error when dealing
30 with streams). To differentiate between a true error and EOF, the
31 client must call isEof().
32 */
33class InputApi : public Cpl::Io::Input,
34 virtual public Cpl::Io::File::ObjectApi
35{
36};
37
38
39}; // end namespaces
40};
41};
42#endif // end header latch
43
44
This abstract class defines the interface for a Random Access Input File.
Definition InputApi.h:35
This abstract class defines the basic additional functionality, beyond that of a stream,...
Definition ObjectApi.h:32
This partially abstract class defines a interface for operating on an input stream (example of a stre...
Definition Input.h:37
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20