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