forked from boostorg/algorithm
23 lines
836 B
C++
23 lines
836 B
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_REGEX_HPP
|
|
#define BOOST_STRING_ALGO_REGEX_HPP
|
|
|
|
/*! \file
|
|
Cumulative include for string_algo library.
|
|
In addtion to string_algo.hpp, it contains also regex-related stuff.
|
|
*/
|
|
|
|
#include <boost/regex.hpp>
|
|
#include <boost/string_algo.hpp>
|
|
#include <boost/algorithm/string/regex.hpp>
|
|
|
|
#endif // BOOST_STRING_ALGO_REGEX_HPP
|