| 29 | using namespace scopy; |
| 30 | |
| 31 | void PluginBase::setParam(QString param, QString category) |
| 32 | { |
| 33 | m_param = param; |
| 34 | m_category = category; |
| 35 | m_displayParam = param; |
| 36 | m_enabled = true; |
| 37 | } |
| 38 | |
| 39 | void PluginBase::setEnabled(bool en) { m_enabled = en; } |
| 40 |
no outgoing calls
no test coverage detected