os/ossrv/ossrv_pub/boost_apis/boost/algorithm/string.hpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 //  Boost string_algo library string_algo.hpp header file  ---------------------------//
     2 
     3 //  Copyright Pavol Droba 2002-2004. Use, modification and
     4 //  distribution is subject to the Boost Software License, Version
     5 //  1.0. (See accompanying file LICENSE_1_0.txt or copy at
     6 //  http://www.boost.org/LICENSE_1_0.txt)
     7 
     8 //  See http://www.boost.org for updates, documentation, and revision history.
     9 
    10 #ifndef BOOST_STRING_ALGO_HPP
    11 #define BOOST_STRING_ALGO_HPP
    12 
    13 /*! \file
    14     Cumulative include for string_algo library
    15 */
    16 
    17 #include <boost/algorithm/string/std_containers_traits.hpp>
    18 #include <boost/algorithm/string/trim.hpp>
    19 #include <boost/algorithm/string/case_conv.hpp>
    20 #include <boost/algorithm/string/predicate.hpp>
    21 #include <boost/algorithm/string/find.hpp>
    22 #include <boost/algorithm/string/split.hpp>
    23 #include <boost/algorithm/string/join.hpp>
    24 #include <boost/algorithm/string/replace.hpp>
    25 #include <boost/algorithm/string/erase.hpp>
    26 #include <boost/algorithm/string/classification.hpp>
    27 #include <boost/algorithm/string/find_iterator.hpp>
    28 
    29 
    30 #endif  // BOOST_STRING_ALGO_HPP