GM6000 Digital Heater Controller Branch: main
SDX-1330
Int64.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_Mp_Int64_h_
2#define Cpl_Dm_Mp_Int64_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 int64_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 Int64 : public Numeric<int64_t, Int64>
42{
43public:
44 /** Constructor. Invalid MP.
45 */
46 Int64( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName )
47 : Numeric<int64_t, Int64>( myModelBase, symbolicName )
48 {
49 }
50
51 /// Constructor. Valid MP. Requires an initial value
52 Int64( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, int64_t initialValue )
53 : Numeric<int64_t, Int64>( myModelBase, symbolicName, initialValue )
54 {
55 }
56
57public:
58 /// Type safe subscriber
60
61public:
62 /// See Cpl::Dm::ModelPoint.
63 const char* getTypeAsText() const noexcept
64 {
65 return "Cpl::Dm::Mp::Int64";
66 }
67};
68
69
70
71}; // end namespaces
72};
73};
74#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 int64_t.
Definition Int64.h:42
Int64(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor.
Definition Int64.h:46
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPoint.
Definition Int64.h:63
Cpl::Dm::Subscriber< Int64 > Observer
Type safe subscriber.
Definition Int64.h:59
Int64(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, int64_t initialValue)
Constructor. Valid MP. Requires an initial value.
Definition Int64.h:52
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