15b61f694a
* clean up and fix of copyright notices for the include files that are directly under boost/ * parenthesized a couple of macro names in boost/dynamic_bitset/config.hpp (yeah, a bit paranoid, I know :-)) * removed some superfluous comments and enclosed an url in angle brackets * changed block_width_type, to avoid a few level 4 warnings with MSVC++ * added the usual private-and-non-implemented copy members to bit_appender * removed useless #pragma warning(disable:4996) for MSVC++ (it should have been eventually applied to much more places than it was; and, anyhow, the only sensible way to get rid of the warning is to disable it globally) * slight tweak in to_ulong (assert moved a bit earlier) [SVN r48252]
26 lines
675 B
C++
26 lines
675 B
C++
// -----------------------------------------------------------
|
|
//
|
|
// Copyright (c) 2001-2002 Chuck Allison and Jeremy Siek
|
|
// Copyright (c) 2003-2004 Gennaro Prota
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// (See accompanying file LICENSE_1_0.txt or copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
// -----------------------------------------------------------
|
|
|
|
#ifndef BOOST_DYNAMIC_BITSET_FWD_HPP
|
|
#define BOOST_DYNAMIC_BITSET_FWD_HPP
|
|
|
|
#include <memory>
|
|
|
|
namespace boost {
|
|
|
|
template <typename Block = unsigned long,
|
|
typename Allocator = std::allocator<Block> >
|
|
class dynamic_bitset;
|
|
|
|
}
|
|
|
|
#endif // include guard
|