GM6000 Digital Heater Controller Branch: main
SDX-1330
Traverser.h
Go to the documentation of this file.
1#ifndef Cpl_Type_Traverser_h_
2#define Cpl_Type_Traverser_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
17///
18namespace Cpl {
19///
20namespace Type {
21
22/** This class defines a set of type(s) that are used with
23 the traverser design pattern. The traverser pattern is an
24 adaptation of a internal iterator.
25 */
27{
28public:
29 /** Return codes (for the callback method) that determine if the traversal
30 should continue.
31 */
32 enum Status_T {
33 eABORT = 0, //!< Indicates the client wants to cancel/terminate the traversal
34 eCONTINUE = 1 //!< Indicates the client wants to continue the traversal
35 };
36
37public:
38 /** This constructor does NOTHING. It is work-around/hack to get Doxygen
39 to properly document the enum above when there is ONLY a enum in the
40 class.
41 */
43};
44
45}; // end namespaces
46};
47#endif // end header latch
48
This class defines a set of type(s) that are used with the traverser design pattern.
Definition Traverser.h:27
Status_T
Return codes (for the callback method) that determine if the traversal should continue.
Definition Traverser.h:32
@ eABORT
Indicates the client wants to cancel/terminate the traversal.
Definition Traverser.h:33
@ eCONTINUE
Indicates the client wants to continue the traversal.
Definition Traverser.h:34
Traverser()
This constructor does NOTHING.
Definition Traverser.h:42
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20