| 101 | extern "C" |
| 102 | { |
| 103 | FB_DLL_EXPORT void FB_PLUGIN_ENTRY_POINT(IMaster* m) |
| 104 | { |
| 105 | master = m; |
| 106 | IPluginManager* pm = m->getPluginManager(); |
| 107 | pm->registerModule(&module); |
| 108 | pm->registerPluginFactory(IPluginManager::TYPE_REPLICATOR, "fbSampleReplicator", &factory); |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | static std::atomic_int logCounter; |
nothing calls this directly
no test coverage detected