os/ossrv/ossrv_pub/boost_apis/boost/xpressive/xpressive.hpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200 (2012-06-15)
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 ///////////////////////////////////////////////////////////////////////////////
     2 /// \file xpressive.hpp
     3 /// Includes all of xpressive including support for both static and
     4 /// dynamic regular expressions.
     5 //
     6 //  Copyright 2004 Eric Niebler. Distributed under the Boost
     7 //  Software License, Version 1.0. (See accompanying file
     8 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
     9 
    10 #ifndef BOOST_XPRESSIVE_HPP_EAN_10_04_2005
    11 #define BOOST_XPRESSIVE_HPP_EAN_10_04_2005
    12 
    13 // MS compatible compilers support #pragma once
    14 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
    15 # pragma once
    16 #endif
    17 
    18 #include <boost/xpressive/xpressive_static.hpp>
    19 #include <boost/xpressive/xpressive_dynamic.hpp>
    20 
    21 #endif