summaryrefslogtreecommitdiffstats
path: root/src/librbd/cache/TypeTraits.h
blob: dd7075e8d834d013ab3eeef75a7b842bb12f34b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab

#ifndef CEPH_LIBRBD_CACHE_TYPE_TRAITS_H
#define CEPH_LIBRBD_CACHE_TYPE_TRAITS_H

namespace ceph {
namespace immutable_obj_cache {

class CacheClient;

} // namespace immutable_obj_cache
} // namespace ceph

namespace librbd {
namespace cache {

template <typename ImageCtxT>
struct TypeTraits {
  typedef ceph::immutable_obj_cache::CacheClient CacheClient;    
};

} // namespace librbd
} // namespace cache

#endif