GM6000 Digital Heater Controller Branch: main
SDX-1330
Uint32.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_Mp_Uint32_h_
2#define Cpl_Dm_Mp_Uint32_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#include "Cpl/Dm/Mp/Numeric.h"
17#include <stdint.h>
18
19///
20namespace Cpl {
21///
22namespace Dm {
23///
24namespace Mp {
25
26
27/** This class provides a concrete implementation for a Point who's data is a
28 uint32_t.
29
30 The toJSON()/fromJSON format is:
31 \code
32
33 { name:"<mpname>", type:"<mptypestring>", valid:true|false, seqnum:nnnn, locked:true|false, val:<numvalue> }
34
35 where <numvalue> is integer numeric
36
37 \endcode
38
39 NOTE: All methods in this class ARE thread Safe unless explicitly
40 documented otherwise.
41 */
42class Uint32 : public Numeric<uint32_t,Uint32>
43{
44public:
45 /** Constructor. Invalid MP.
46 */
47 Uint32(Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName )
48 : Numeric<uint32_t, Uint32>(myModelBase, symbolicName )
49 {
50 }
51
52 /// Constructor. Valid MP. Requires an initial value
53 Uint32(Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, uint32_t initialValue )
54 : Numeric<uint32_t, Uint32>(myModelBase, symbolicName, initialValue)
55 {
56 }
57
58public:
59 /// Type safe subscriber
61
62public:
63 /// See Cpl::Dm::ModelPoint.
64 const char* getTypeAsText() const noexcept
65 {
66 return "Cpl::Dm::Mp::Uint32";
67 }
68};
69
70
71
72}; // end namespaces
73};
74};
75#endif // end header latch
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 C num...
Definition Numeric.h:64
This class provides a concrete implementation for a Point who's data is a uint32_t.
Definition Uint32.h:43
Uint32(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, uint32_t initialValue)
Constructor. Valid MP. Requires an initial value.
Definition Uint32.h:53
Uint32(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor.
Definition Uint32.h:47
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPoint.
Definition Uint32.h:64
Cpl::Dm::Subscriber< Uint32 > Observer
Type safe subscriber.
Definition Uint32.h:60
This template class defines a type safe Subscriber.
Definition Subscriber.h:82
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20