diff options
author | Matt Benjamin <mbenjamin@redhat.com> | 2015-10-07 19:50:26 +0200 |
---|---|---|
committer | Matt Benjamin <mbenjamin@redhat.com> | 2016-02-12 18:04:52 +0100 |
commit | 83bed47f4cc381537531e2db1d4c25687ca265e4 (patch) | |
tree | e3d183e894c6669cc01cdfd3f60f8128374d2176 /src/rgw/rgw_os_lib.h | |
parent | lirgw: call RGWHanlder_Lib::init_from_header (diff) | |
download | ceph-83bed47f4cc381537531e2db1d4c25687ca265e4.tar.xz ceph-83bed47f4cc381537531e2db1d4c25687ca265e4.zip |
librgw: s/rgw_rest_lib.{h,cc}/rgw_os_lib.{h,cc}
There is no longer an explicit (e.g., inherited) dependency on REST
implementations.
The remaining coupling (via RGWLibEnv, and struct req_state), can
be factored out later.
Signed-off-by: Matt Benjamin <mbenjamin@redhat.com>
Diffstat (limited to '')
-rw-r--r-- | src/rgw/rgw_os_lib.h (renamed from src/rgw/rgw_rest_lib.h) | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/rgw/rgw_rest_lib.h b/src/rgw/rgw_os_lib.h index 6ea5e7278cf..639fc9951f3 100644 --- a/src/rgw/rgw_rest_lib.h +++ b/src/rgw/rgw_os_lib.h @@ -1,17 +1,13 @@ // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab -#ifndef CEPH_RGW_REST_LIB_H -#define CEPH_RGW_REST_LIB_H +#ifndef CEPH_RGW_OS_LIB_H +#define CEPH_RGW_OS_LIB_H #include <functional> -#include "rgw_rest.h" #include "rgw_common.h" #include "rgw_lib.h" -#warning move to rgw_file...I think...there is no REST here - - /* RGWOps */ class RGWListBuckets_ObjStore_Lib : public RGWListBuckets_ObjStore { @@ -55,4 +51,4 @@ public: }; /* RGWListBucket_ObjStore_Lib */ -#endif /* CEPH_RGW_REST_LIB_H */ +#endif /* CEPH_RGW_OS_LIB_H */ |