• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //  Boost string_algo library string_regex.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_REGEX_HPP
12 #define BOOST_STRING_ALGO_REGEX_HPP
13 
14 /*! \file
15     Cumulative include for string_algo library.
16     In addition to string.hpp contains also regex-related stuff.
17 */
18 
19 #include <boost/regex.hpp>
20 #include <boost/algorithm/string.hpp>
21 #include <boost/algorithm/string/regex.hpp>
22 
23 #endif  // BOOST_STRING_ALGO_REGEX_HPP
24