GM6000 Digital Heater Controller Branch: main
SDX-1330
Uint64.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_Mp_Uint64_h_
2#define Cpl_Dm_Mp_Uint64_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 uint64_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 Uint64 : public Numeric<uint64_t, Uint64>
42{
43public:
44 /** Constructor. Invalid MP.
45 */
46 Uint64( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName )
47 : Numeric<uint64_t, Uint64>( myModelBase, symbolicName )
48 {
49 }
50
51 /// Constructor. Valid MP. Requires an initial value
52 Uint64( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, uint64_t initialValue )
53 : Numeric<uint64_t, Uint64>( 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::Uint64";
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 uint64_t.
Definition Uint64.h:42
Uint64(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor.
Definition Uint64.h:46
Uint64(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, uint64_t initialValue)
Constructor. Valid MP. Requires an initial value.
Definition Uint64.h:52
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPoint.
Definition Uint64.h:64
Cpl::Dm::Subscriber< Uint64 > Observer
Type safe subscriber.
Definition Uint64.h:59
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