GM6000 Digital Heater Controller Branch: main
SDX-1330
Descriptor.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Descriptor_h_
2#define Cpl_Io_Descriptor_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///
17namespace Cpl {
18///
19namespace Io {
20
21/** This union defines a 'IO descriptor' in terms of a an integer
22 and/or a void*. This allows the concrete 'Standard IO' class some
23 flexibility in their implementation.
24 */
26{
27public:
28 /// Union the different possible types for a descriptor
29 union
30 {
31 /// The traditional standard Posix file descriptor
32 int m_fd;
33
34 /// Pointer implementation (such as FILE*)
35 void* m_handlePtr;
36 };
37
38public:
39 /// fd Constructor
40 Descriptor( int fd ):m_fd( fd ) {}
41
42 /// handle Constructor
43 Descriptor( void* ptr ):m_handlePtr( ptr ) {}
44
45 /// Default Constructor
46 Descriptor():m_handlePtr( nullptr ) {}
47};
48
49}; // end namespaces
50};
51#endif // end header latch
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
This union defines a 'IO descriptor' in terms of a an integer and/or a void*.
Definition Descriptor.h:26
Descriptor(int fd)
fd Constructor
Definition Descriptor.h:40
Descriptor(void *ptr)
handle Constructor
Definition Descriptor.h:43
Descriptor()
Default Constructor.
Definition Descriptor.h:46