GM6000 Digital Heater Controller Branch: main
SDX-1330
MApp_.h
Go to the documentation of this file.
1#ifndef Cpl_MApp_MApp_h_
2#define Cpl_MApp_MApp_h_
3/*-----------------------------------------------------------------------------
4* COPYRIGHT_HEADER_TO_BE_FILLED_LATER
5*----------------------------------------------------------------------------*/
6/** @file */
7
8
9#include "Cpl/MApp/MAppApi.h"
10#include "Cpl/Container/Map.h"
11
12/*----------------------------------------------------------------------------*/
13///
14namespace Cpl {
15///
16namespace MApp {
17
18
19/** This partial concrete class provide common infrastructure that is common
20 to all MApp instances.
21 */
22class MApp_ : public MAppApi
23{
24protected:
25 /// Constructor.
27 const char* mappName,
28 const char* description,
29 const char* usage );
30
31public:
32 /// See Cpl::MApp::Api
33 const char* getName() const noexcept;
34
35 /// See Cpl::MApp::Api
36 const char* getDescription() const noexcept;
37
38 /// See Cpl::MApp::Api
39 const char* getUsage() const noexcept;
40
41protected:
42 /// See Cpl::Container::Key
43 const Cpl::Container::Key& getKey() const noexcept;
44
45protected:
46 /// Command name
47 Cpl::Container::KeyLiteralString m_name;
48
49 /// Description
50 const char* m_description;
51
52 /// Usage
53 const char* m_usage;
54
55 /// Started state
57};
58
59}; // end namespaces
60};
61#endif // end header latch
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This partial concrete class provide common infrastructure that is common to all MApp instances.
Definition MApp_.h:23
const char * getUsage() const noexcept
See Cpl::MApp::Api.
const char * m_usage
Usage.
Definition MApp_.h:53
const char * getName() const noexcept
See Cpl::MApp::Api.
Cpl::Container::KeyLiteralString m_name
Command name.
Definition MApp_.h:47
const char * m_description
Description.
Definition MApp_.h:50
const Cpl::Container::Key & getKey() const noexcept
See Cpl::Container::Key.
MApp_(Cpl::Container::Map< MAppApi > &mappList, const char *mappName, const char *description, const char *usage)
Constructor.
bool m_started
Started state.
Definition MApp_.h:56
const char * getDescription() const noexcept
See Cpl::MApp::Api.
This abstract class defines the interface for a Micro Application (MApp).
Definition MAppApi.h:37
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20