GM6000 Digital Heater Controller Branch: main
SDX-1330
FsmContext_.h
Go to the documentation of this file.
1#ifndef Ajax_Heating_Supervisor_FsmContext_x_h_
2#define Ajax_Heating_Supervisor_FsmContext_x_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-2020 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16
17/* This file is auto-generated DO NOT MANUALLY EDIT this file! */
18
19
20///
21namespace Ajax { namespace Heating { namespace Supervisor {
22
23
24/// Context (aka actions/guards) for my Finite State Machine
26{
27public:
28 /// Action
29 virtual void allOff() noexcept = 0;
30
31 /// Action
32 virtual void checkForSensor() noexcept = 0;
33
34 /// Action
35 virtual void fanOn() noexcept = 0;
36
37 /// Action
38 virtual void heatOff() noexcept = 0;
39
40 /// Action
41 virtual void runHeatingAlgo() noexcept = 0;
42
43
44public:
45 /// Guard
46 virtual bool isSensorAvailable() noexcept = 0;
47
48
49public:
50 /// Virtual Destructor
51 virtual ~FsmContext_(){}
52
53};
54
55};};}; // end namespace(s)
56#endif /// end header latch
Context (aka actions/guards) for my Finite State Machine.
Definition FsmContext_.h:26
virtual bool isSensorAvailable() noexcept=0
Guard.
virtual void heatOff() noexcept=0
Action.
virtual void allOff() noexcept=0
Action.
virtual void fanOn() noexcept=0
Action.
virtual void checkForSensor() noexcept=0
Action.
virtual void runHeatingAlgo() noexcept=0
Action.
The 'Ajax' namespace is the root name space all GM6000 application specific source code.