diff options
Diffstat (limited to 'src/rgw/services/svc_sync_modules.h')
-rw-r--r-- | src/rgw/services/svc_sync_modules.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/rgw/services/svc_sync_modules.h b/src/rgw/services/svc_sync_modules.h new file mode 100644 index 00000000..19c4ec57 --- /dev/null +++ b/src/rgw/services/svc_sync_modules.h @@ -0,0 +1,26 @@ +#ifndef CEPH_RGW_SERVICES_SYNC_MODULES_H +#define CEPH_RGW_SERVICES_SYNC_MODULES_H + + +#include "rgw/rgw_service.h" + + +class RGWSyncModulesManager; + +class RGWSI_SyncModules : public RGWServiceInstance +{ + RGWSyncModulesManager *sync_modules_manager{nullptr}; + +public: + RGWSI_SyncModules(CephContext *cct): RGWServiceInstance(cct) {} + ~RGWSI_SyncModules(); + + RGWSyncModulesManager *get_manager() { + return sync_modules_manager; + } + + void init(); +}; + +#endif + |