summaryrefslogtreecommitdiffstats
path: root/src/include/buffer_fwd.h
blob: 7fac596305333e14bfca80d1cf767ff5c5a93a4d (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 v14_2_0 {
      class ptr;
      class list;
    }
    class hash;
  }

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

#endif