os/ossrv/ossrv_pub/boost_apis/boost/regex.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
 *
sl@0
     3
 * Copyright (c) 1998-2002
sl@0
     4
 * John Maddock
sl@0
     5
 *
sl@0
     6
 * Use, modification and distribution are subject to the 
sl@0
     7
 * Boost Software License, Version 1.0. (See accompanying file 
sl@0
     8
 * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
sl@0
     9
 *
sl@0
    10
 */
sl@0
    11
sl@0
    12
 /*
sl@0
    13
  *   LOCATION:    see http://www.boost.org/libs/regex for documentation.
sl@0
    14
  *   FILE         regex.cpp
sl@0
    15
  *   VERSION      see <boost/version.hpp>
sl@0
    16
  *   DESCRIPTION: Declares boost::basic_regex<> and associated
sl@0
    17
  *                functions and classes. This header is the main
sl@0
    18
  *                entry point for the template regex code.
sl@0
    19
  */
sl@0
    20
sl@0
    21
sl@0
    22
/* start with C compatibility API */
sl@0
    23
sl@0
    24
#ifndef BOOST_RE_REGEX_HPP
sl@0
    25
#define BOOST_RE_REGEX_HPP
sl@0
    26
sl@0
    27
#ifndef BOOST_REGEX_CONFIG_HPP
sl@0
    28
#include <boost/regex/config.hpp>
sl@0
    29
#endif
sl@0
    30
sl@0
    31
#include <boost/regex/v4/regex.hpp>
sl@0
    32
sl@0
    33
#endif  // include
sl@0
    34
sl@0
    35
sl@0
    36
sl@0
    37