File indexing completed on 2025-01-18 09:47:51
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef BOOST_POLY_COLLECTION_BASE_COLLECTION_FWD_HPP
0010 #define BOOST_POLY_COLLECTION_BASE_COLLECTION_FWD_HPP
0011
0012 #if defined(_MSC_VER)
0013 #pragma once
0014 #endif
0015
0016 #include <memory>
0017
0018 namespace boost{
0019
0020 namespace poly_collection{
0021
0022 template<typename Base,typename Allocator=std::allocator<Base>>
0023 class base_collection;
0024
0025 template<typename Base,typename Allocator>
0026 bool operator==(
0027 const base_collection<Base,Allocator>& x,
0028 const base_collection<Base,Allocator>& y);
0029
0030 template<typename Base,typename Allocator>
0031 bool operator!=(
0032 const base_collection<Base,Allocator>& x,
0033 const base_collection<Base,Allocator>& y);
0034
0035 template<typename Base,typename Allocator>
0036 void swap(
0037 base_collection<Base,Allocator>& x,base_collection<Base,Allocator>& y);
0038
0039 }
0040
0041 using poly_collection::base_collection;
0042
0043 }
0044
0045 #endif