| 51 | // ----------------------------------------------------------------------------- |
| 52 | |
| 53 | int __ceph_plugin_init(CephContext *cct, |
| 54 | const std::string& type, |
| 55 | const std::string& name) |
| 56 | { |
| 57 | PluginRegistry *instance = cct->get_plugin_registry(); |
| 58 | |
| 59 | return instance->add(type, name, new CompressorPluginExample(cct)); |
| 60 | } |
nothing calls this directly
no test coverage detected