string.hpp 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. // Boost string_algo library string_algo.hpp header file ---------------------------//
  2. // Copyright Pavol Droba 2002-2004.
  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_ALGO_HPP
  9. #define BOOST_STRING_ALGO_HPP
  10. /*! \file
  11. Cumulative include for string_algo library
  12. */
  13. #include <boost/algorithm/string/std_containers_traits.hpp>
  14. #include <boost/algorithm/string/trim.hpp>
  15. #include <boost/algorithm/string/case_conv.hpp>
  16. #include <boost/algorithm/string/predicate.hpp>
  17. #include <boost/algorithm/string/find.hpp>
  18. #include <boost/algorithm/string/split.hpp>
  19. #include <boost/algorithm/string/join.hpp>
  20. #include <boost/algorithm/string/replace.hpp>
  21. #include <boost/algorithm/string/erase.hpp>
  22. #include <boost/algorithm/string/classification.hpp>
  23. #include <boost/algorithm/string/find_iterator.hpp>
  24. #endif // BOOST_STRING_ALGO_HPP