]> git.proxmox.com Git - ceph.git/blob - ceph/src/librbd/cache/TypeTraits.h
import 15.2.0 Octopus source
[ceph.git] / ceph / src / librbd / cache / TypeTraits.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_LIBRBD_CACHE_TYPE_TRAITS_H
5 #define CEPH_LIBRBD_CACHE_TYPE_TRAITS_H
6
7 namespace ceph {
8 namespace immutable_obj_cache {
9
10 class CacheClient;
11
12 } // namespace immutable_obj_cache
13 } // namespace ceph
14
15 namespace librbd {
16 namespace cache {
17
18 template <typename ImageCtxT>
19 struct TypeTraits {
20 typedef ceph::immutable_obj_cache::CacheClient CacheClient;
21 };
22
23 } // namespace librbd
24 } // namespace cache
25
26 #endif