Blame boost/regex.hpp

Packit 58578d
/*
Packit 58578d
 *
Packit 58578d
 * Copyright (c) 1998-2002
Packit 58578d
 * John Maddock
Packit 58578d
 *
Packit 58578d
 * Use, modification and distribution are subject to the 
Packit 58578d
 * Boost Software License, Version 1.0. (See accompanying file 
Packit 58578d
 * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
Packit 58578d
 *
Packit 58578d
 */
Packit 58578d
Packit 58578d
 /*
Packit 58578d
  *   LOCATION:    see http://www.boost.org/libs/regex for documentation.
Packit 58578d
  *   FILE         regex.cpp
Packit 58578d
  *   VERSION      see <boost/version.hpp>
Packit 58578d
  *   DESCRIPTION: Declares boost::basic_regex<> and associated
Packit 58578d
  *                functions and classes. This header is the main
Packit 58578d
  *                entry point for the template regex code.
Packit 58578d
  */
Packit 58578d
Packit 58578d
Packit 58578d
/* start with C compatibility API */
Packit 58578d
Packit 58578d
#ifndef BOOST_RE_REGEX_HPP
Packit 58578d
#define BOOST_RE_REGEX_HPP
Packit 58578d
Packit 58578d
#ifndef BOOST_REGEX_CONFIG_HPP
Packit 58578d
#include <boost/regex/config.hpp>
Packit 58578d
#endif
Packit 58578d
Packit 58578d
#include <boost/regex/v4/regex.hpp>
Packit 58578d
Packit 58578d
#endif  // include
Packit 58578d
Packit 58578d
Packit 58578d
Packit 58578d