Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:47:51

0001 /* Copyright 2016-2017 Joaquin M Lopez Munoz.
0002  * Distributed under the Boost Software License, Version 1.0.
0003  * (See accompanying file LICENSE_1_0.txt or copy at
0004  * http://www.boost.org/LICENSE_1_0.txt)
0005  *
0006  * See http://www.boost.org/libs/poly_collection for library home page.
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 } /* namespace poly_collection */
0040 
0041 using poly_collection::base_collection;
0042 
0043 } /* namespace boost */
0044 
0045 #endif