mirror of
https://github.com/boostorg/utility.git
synced 2025-05-09 15:04:00 +00:00
34 lines
834 B
C++
34 lines
834 B
C++
// Boost utility_fwd.hpp header file ---------------------------------------//
|
|
|
|
// Copyright 2001, 2003 Beman Dawes. Use, modification, and distribution are
|
|
// subject to the Boost Software License, Version 1.0. (See accompanying file
|
|
// LICENSE_1_0.txt or a copy at <http://www.boost.org/LICENSE_1_0.txt>.)
|
|
|
|
// See <http://www.boost.org/libs/utility/> for the library's home page.
|
|
|
|
#ifndef BOOST_UTILITY_FWD_HPP
|
|
#define BOOST_UTILITY_FWD_HPP
|
|
|
|
|
|
namespace boost
|
|
{
|
|
|
|
|
|
// From <boost/utility/base_from_member.hpp> -------------------------------//
|
|
|
|
template < typename MemberType, int UniqueID = 0 >
|
|
class base_from_member;
|
|
|
|
|
|
// From <boost/noncopyable.hpp> --------------------------------------------//
|
|
|
|
class noncopyable;
|
|
|
|
// Also has a few function templates
|
|
|
|
|
|
} // namespace boost
|
|
|
|
|
|
#endif // BOOST_UTILITY_FWD_HPP
|