Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
FlagAlarm.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_LIB_ALARMS_FLAGALARM_H
4#define IMT_BASE_LIB_ALARMS_FLAGALARM_H
5
9
10namespace imt {
11namespace base {
12namespace lib {
13namespace alarms {
14
22
23public:
24
30 FlagAlarm(AlarmSenderIfc& alarmSender, AlarmIdentifier const alarmId);
31
35 void setFlag();
36
40 void clearFlag();
41
46 bool isAlarmActive() const;
47
51 void reset();
52
57 void updateValue(bool const flag);
58
59private:
60
61 AlarmSenderIfc& m_alarmSender;
62 AlarmIdentifier const m_alarmId;
63 // AXIVION Next Codeline AutosarC++19_03-A12.1.3: All data members initialized in custom constructor
64 bool m_isAlarmActive;
65};
66
67} // namespace alarms
68} // namespace lib
69} // namespace base
70} // namespace imt
71
72#endif // IMT_BASE_LIB_ALARMS_FLAGALARM_H
Base class for a non copyable class that disables copy and assignment of instances.
Definition Noncopyable.h:51
Interface to send an alarm message to activate or deactivate a given alarm.
Activates the given alarms if the flag is set and deactivates it when the flag is cleared.
Definition FlagAlarm.h:21
void setFlag()
Sets the flag and activates the alarm.
bool isAlarmActive() const
Returns if any alarm is currently activated.
void updateValue(bool const flag)
Updates the flag.
FlagAlarm(AlarmSenderIfc &alarmSender, AlarmIdentifier const alarmId)
Constructor.
void reset()
Resets the flag without sending a disable alarm message.
void clearFlag()
Clears the flag and disables the alarm.
uint32_t AlarmIdentifier
The alarm identifier.
This is a application specific file which is used to configure Imt.Base.Core.Math.