std_containers_traits.hpp 836 B

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