GM6000 Digital Heater Controller Branch: main
SDX-1330
InputOutput.h
Go to the documentation of this file.
1#ifndef Cpl_Io_InputOutput_h_
2#define Cpl_Io_InputOutput_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"
16#include "Cpl/Io/Output.h"
17
18///
19namespace Cpl {
20///
21namespace Io {
22
23
24
25/** This abstract class defines a interface for operating on an
26 input-output stream (example of a stream is socket connection).
27 */
28class InputOutput : public Input,
29 public Output
30{
31};
32
33
34}; // end namespaces
35};
36#endif // end header latch
This partially abstract class defines a interface for operating on an input stream (example of a stre...
Definition Input.h:37
This abstract class defines a interface for operating on an input-output stream (example of a stream ...
Definition InputOutput.h:30
This partially abstract class defines a interface for operating on an output stream (example of a str...
Definition Output.h:34
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20