* Constructs the plugin. * * @param[in] name Plugin name (must exist over lifetime) * @param[in] uid Unique id */
| 73 | * @param[in] uid Unique id |
| 74 | */ |
| 75 | SysMsgPlugin(const char* name, uint16_t uid) : |
| 76 | Plugin(name, uid), |
| 77 | m_view(), |
| 78 | m_timer(), |
| 79 | m_duration(0U), |
| 80 | m_max(0U), |
| 81 | m_isInit(true), |
| 82 | m_messages(), |
| 83 | m_wrIndex(0U), |
| 84 | m_rdIndex(0U) |
| 85 | { |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * Destroys the plugin. |
nothing calls this directly
no outgoing calls
no test coverage detected