| 74 | *****************************************************************************/ |
| 75 | |
| 76 | void PluginMgr::begin() |
| 77 | { |
| 78 | SettingsService& settings = SettingsService::getInstance(); |
| 79 | |
| 80 | if (false == settings.open(true)) |
| 81 | { |
| 82 | m_deviceId = settings.getHostname().getDefault(); |
| 83 | } |
| 84 | else |
| 85 | { |
| 86 | m_deviceId = settings.getHostname().getValue(); |
| 87 | |
| 88 | settings.close(); |
| 89 | } |
| 90 | |
| 91 | createPluginConfigDirectory(); |
| 92 | } |
| 93 | |
| 94 | IPluginMaintenance* PluginMgr::install(const char* name, uint8_t slotId) |
| 95 | { |
no test coverage detected