* Constructs the plugin. * * @param[in] name Plugin name (must exist over lifetime) * @param[in] uid Unique id */
| 70 | * @param[in] uid Unique id |
| 71 | */ |
| 72 | MatrixPlugin(const char* name, uint16_t uid) : |
| 73 | Plugin(name, uid), |
| 74 | m_timer() |
| 75 | { |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * Destroys the plugin. |
nothing calls this directly
no outgoing calls
no test coverage detected