| 345 | } // anonymous namespace |
| 346 | |
| 347 | extern "C" FB_DLL_EXPORT void FB_PLUGIN_ENTRY_POINT(IMaster* m) |
| 348 | { |
| 349 | master = m; |
| 350 | IPluginManager* pluginManager = master->getPluginManager(); |
| 351 | |
| 352 | module.registerMe(pluginManager); |
| 353 | pluginManager->registerPluginFactory(IPluginManager::TYPE_KEY_HOLDER, "fbSampleKeyHolder", |
| 354 | &factory); |
| 355 | } |
| 356 |
nothing calls this directly
no test coverage detected