1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef BOOST_SCOPE_UNIQUE_FD_HPP_INCLUDED_
- #define BOOST_SCOPE_UNIQUE_FD_HPP_INCLUDED_
- #include <boost/scope/detail/config.hpp>
- #include <boost/scope/unique_resource.hpp>
- #include <boost/scope/fd_deleter.hpp>
- #include <boost/scope/fd_resource_traits.hpp>
- #include <boost/scope/detail/header.hpp>
- #ifdef BOOST_HAS_PRAGMA_ONCE
- #pragma once
- #endif
- namespace boost {
- namespace scope {
- using unique_fd = unique_resource< int, fd_deleter, fd_resource_traits >;
- }
- }
- #include <boost/scope/detail/footer.hpp>
- #endif
|