summaryrefslogtreecommitdiffstats
path: root/src/include/buffer_fwd.h
blob: 6de7b1a1ff56cb5d3b643f79c99cf0441cdf422a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef BUFFER_FWD_H
#define BUFFER_FWD_H

namespace ceph {
  namespace buffer {
    inline namespace v15_2_0 {
      class ptr;
      class list;
    }
    class hash;
  }

  using bufferptr = buffer::ptr;
  using bufferlist = buffer::list;
  using bufferhash = buffer::hash;
}

#endif