]> git.proxmox.com Git - ceph.git/blob - ceph/src/rgw/rgw_sync_module_log.h
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / rgw / rgw_sync_module_log.h
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab
3
4 #ifndef CEPH_RGW_SYNC_MODULE_LOG_H
5 #define CEPH_RGW_SYNC_MODULE_LOG_H
6
7 #include "rgw_sync_module.h"
8
9 class RGWLogSyncModule : public RGWSyncModule {
10 public:
11 RGWLogSyncModule() {}
12 bool supports_data_export() override {
13 return false;
14 }
15 int create_instance(CephContext *cct, const JSONFormattable& config, RGWSyncModuleInstanceRef *instance) override;
16 };
17
18 #endif