]> git.proxmox.com Git - ceph.git/blob - ceph/src/client/InodeRef.h
add subtree-ish sources for 12.0.3
[ceph.git] / 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