mirror of
https://github.com/boostorg/dynamic_bitset.git
synced 2026-01-19 04:12:09 +00:00
15 lines
294 B
C++
15 lines
294 B
C++
#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;
|
|
|
|
} // namespace boost
|
|
|
|
#endif // BOOST_DYNAMIC_BITSET_FWD_HPP
|