blob: 2989e30b5c487bba9985d12e8260bebc2763b62b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#ifndef CEPH_LIBRBD_IMAGE_TYPE_TRAITS_H
#define CEPH_LIBRBD_IMAGE_TYPE_TRAITS_H
namespace librbd {
namespace asio { struct ContextWQ; }
namespace image {
template <typename ImageCtxT>
struct TypeTraits {
typedef asio::ContextWQ ContextWQ;
};
} // namespace image
} // namespace librbd
#endif // CEPH_LIBRBD_IMAGE_TYPE_TRAITS_H
|