GM6000 Digital Heater Controller Branch: main
SDX-1330
MpFanMode.h
Go to the documentation of this file.
1#ifndef Storm_Dm_MpFanMode_h_
2#define Storm_Dm_MpFanMode_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-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16#include "Ajax/Type/FanMode.h"
17#include "Cpl/Dm/Mp/Enum_.h"
18
19///
20namespace Ajax {
21///
22namespace Dm {
23
24/** Concrete Model Point the FanMode Enum
25 */
26class MpFanMode : public Cpl::Dm::Mp::Enum_<Ajax::Type::FanMode, MpFanMode>
27{
28public:
29 /// Constructor.
30 MpFanMode( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName )
31 :Cpl::Dm::Mp::Enum_<Ajax::Type::FanMode, MpFanMode>( myModelBase, symbolicName )
32 {
33 }
34
35 /// Constructor.
36 MpFanMode( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, Ajax::Type::FanMode initialValue )
37 : Cpl::Dm::Mp::Enum_<Ajax::Type::FanMode, MpFanMode>( myModelBase, symbolicName, initialValue )
38 {
39 }
40
41 /// Type
42 const char* getTypeAsText() const noexcept
43 {
44 return "Ajax::Dm::MpFanMode";
45 }
46
47public:
48 /// Type safe subscriber
50};
51
52
53}; // end namespaces
54};
55#endif // end header latch
Concrete Model Point the FanMode Enum.
Definition MpFanMode.h:27
MpFanMode(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor.
Definition MpFanMode.h:30
const char * getTypeAsText() const noexcept
Type.
Definition MpFanMode.h:42
Cpl::Dm::Subscriber< MpFanMode > Observer
Type safe subscriber.
Definition MpFanMode.h:49
MpFanMode(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, Ajax::Type::FanMode initialValue)
Constructor.
Definition MpFanMode.h:36
This concrete class implements a simple Model Database.
Definition ModelDatabase.h:56
This template class provides a mostly concrete implementation for a Model Point who's data is a BETTE...
Definition Enum_.h:37
Enum_(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor: Invalid MP.
Definition Enum_.h:44
This template class defines a type safe Subscriber.
Definition Subscriber.h:82
The 'Ajax' namespace is the root name space all GM6000 application specific source code.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20