Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // The Boost Sort library cumulative header.
0002 
0003 //          Copyright Steven J. Ross 2014
0004 // Distributed under the Boost Software License, Version 1.0.
0005 //    (See accompanying file LICENSE_1_0.txt or copy at
0006 //          http://www.boost.org/LICENSE_1_0.txt)
0007 
0008 // See http://www.boost.org/libs/sort/ for library home page.
0009 
0010 #ifndef BOOST_SORT_HPP
0011 #define BOOST_SORT_HPP
0012 
0013 /*
0014 Cumulative include for the Boost Sort library
0015 */
0016 #include <boost/sort/spreadsort/spreadsort.hpp>
0017 #include <boost/sort/spinsort/spinsort.hpp>
0018 #include <boost/sort/flat_stable_sort/flat_stable_sort.hpp>
0019 #include <boost/sort/pdqsort/pdqsort.hpp>
0020 #include <boost/sort/block_indirect_sort/block_indirect_sort.hpp>
0021 #include <boost/sort/sample_sort/sample_sort.hpp>
0022 #include <boost/sort/parallel_stable_sort/parallel_stable_sort.hpp>
0023 
0024 #endif