1 //  Boost string_algo library std_containers_traits.hpp header file  ---------------------------//
2 
3 //  Copyright Pavol Droba 2002-2003.
4 //
5 // Distributed under the Boost Software License, Version 1.0.
6 //    (See accompanying file LICENSE_1_0.txt or copy at
7 //          http://www.boost.org/LICENSE_1_0.txt)
8 
9 //  See http://www.boost.org/ for updates, documentation, and revision history.
10 
11 #ifndef BOOST_STRING_STD_CONTAINERS_TRAITS_HPP
12 #define BOOST_STRING_STD_CONTAINERS_TRAITS_HPP
13 
14 /*!\file
15     This file includes sequence traits for stl containers.
16 */
17 
18 #include <boost/config.hpp>
19 #include <boost/algorithm/string/std/string_traits.hpp>
20 #include <boost/algorithm/string/std/list_traits.hpp>
21 
22 #ifdef BOOST_HAS_SLIST
23 #   include <boost/algorithm/string/std/slist_traits.hpp>
24 #endif
25 
26 #endif  // BOOST_STRING_STD_CONTAINERS_TRAITS_HPP
27