Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / include / buffer_fwd.h
1 #ifndef BUFFER_FWD_H
2 #define BUFFER_FWD_H
3
4 namespace ceph {
5   namespace buffer {
6     class ptr;
7     class list;
8     class hash;
9   }
10
11   using bufferptr = buffer::ptr;
12   using bufferlist = buffer::list;
13   using bufferhash = buffer::hash;
14 }
15
16 #endif
17