Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / client / InodeRef.h
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab
3
4 #ifndef CEPH_CLIENT_INODEREF_H
5 #define CEPH_CLIENT_INODEREF_H
6
7 #include <boost/intrusive_ptr.hpp>
8 class Inode;
9 void intrusive_ptr_add_ref(Inode *in);
10 void intrusive_ptr_release(Inode *in);
11 typedef boost::intrusive_ptr<Inode> InodeRef;
12 #endif