forked from boostorg/algorithm
31 lines
1.1 KiB
C++
31 lines
1.1 KiB
C++
// Boost string_algo library string_algo.hpp header file ---------------------------//
|
|
|
|
// (C) Copyright Pavol Droba 2002-2003. Permission to copy, use, modify, sell and
|
|
// distribute this software is granted provided this copyright notice appears
|
|
// in all copies. This software is provided "as is" without express or implied
|
|
// warranty, and with no claim as to its suitability for any purpose.
|
|
|
|
// See http://www.boost.org for updates, documentation, and revision history.
|
|
|
|
#ifndef BOOST_STRING_ALGO_HPP
|
|
#define BOOST_STRING_ALGO_HPP
|
|
|
|
/*! \file
|
|
Cumulative include for string_algo library
|
|
*/
|
|
|
|
#include <boost/algorithm/string/std_containers_traits.hpp>
|
|
#include <boost/algorithm/string/iterator_range.hpp>
|
|
#include <boost/algorithm/string/trim.hpp>
|
|
#include <boost/algorithm/string/case_conv.hpp>
|
|
#include <boost/algorithm/string/predicate.hpp>
|
|
#include <boost/algorithm/string/find.hpp>
|
|
#include <boost/algorithm/string/split.hpp>
|
|
#include <boost/algorithm/string/replace.hpp>
|
|
#include <boost/algorithm/string/erase.hpp>
|
|
#include <boost/algorithm/string/classification.hpp>
|
|
#include <boost/algorithm/string/find_iterator.hpp>
|
|
|
|
|
|
#endif // BOOST_STRING_ALGO_HPP
|