1 | // Boost string_algo library string_algo.hpp header file ---------------------------// |
---|---|
2 | |
3 | // Copyright Pavol Droba 2002-2004. |
4 | // |
5 | // Distributed under the Boost Software License, Version 1.0. |
6 | // (See accompanying file LICENSE_1_0.txt or copy at |
7 | // http://www.boost.org/LICENSE_1_0.txt) |
8 | |
9 | // See http://www.boost.org/ for updates, documentation, and revision history. |
10 | |
11 | #ifndef BOOST_STRING_ALGO_HPP |
12 | #define BOOST_STRING_ALGO_HPP |
13 | |
14 | /*! \file |
15 | Cumulative include for string_algo library |
16 | */ |
17 | |
18 | #include <boost/algorithm/string/std_containers_traits.hpp> |
19 | #include <boost/algorithm/string/trim.hpp> |
20 | #include <boost/algorithm/string/case_conv.hpp> |
21 | #include <boost/algorithm/string/predicate.hpp> |
22 | #include <boost/algorithm/string/find.hpp> |
23 | #include <boost/algorithm/string/split.hpp> |
24 | #include <boost/algorithm/string/join.hpp> |
25 | #include <boost/algorithm/string/replace.hpp> |
26 | #include <boost/algorithm/string/erase.hpp> |
27 | #include <boost/algorithm/string/classification.hpp> |
28 | #include <boost/algorithm/string/find_iterator.hpp> |
29 | |
30 | |
31 | #endif // BOOST_STRING_ALGO_HPP |
32 |