source: NonGTP/Boost/boost/algorithm/string.hpp @ 857

Revision 857, 1.0 KB checked in by igarcia, 18 years ago (diff)
Line 
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/replace.hpp>
24#include <boost/algorithm/string/erase.hpp>
25#include <boost/algorithm/string/classification.hpp>
26#include <boost/algorithm/string/find_iterator.hpp>
27
28
29#endif  // BOOST_STRING_ALGO_HPP
Note: See TracBrowser for help on using the repository browser.