dynamic_bitset_fwd.hpp 675 B

12345678910111213141516171819202122232425
  1. // -----------------------------------------------------------
  2. //
  3. // Copyright (c) 2001-2002 Chuck Allison and Jeremy Siek
  4. // Copyright (c) 2003-2004 Gennaro Prota
  5. //
  6. // Distributed under the Boost Software License, Version 1.0.
  7. // (See accompanying file LICENSE_1_0.txt or copy at
  8. // http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. // -----------------------------------------------------------
  11. #ifndef BOOST_DYNAMIC_BITSET_FWD_HPP
  12. #define BOOST_DYNAMIC_BITSET_FWD_HPP
  13. #include <memory>
  14. namespace boost {
  15. template <typename Block = unsigned long,
  16. typename Allocator = std::allocator<Block> >
  17. class dynamic_bitset;
  18. }
  19. #endif // include guard