xpressive.hpp 703 B

12345678910111213141516171819202122
  1. ///////////////////////////////////////////////////////////////////////////////
  2. /// \file xpressive.hpp
  3. /// Includes all of xpressive including support for both static and
  4. /// dynamic regular expressions.
  5. //
  6. // Copyright 2008 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. #ifndef BOOST_XPRESSIVE_HPP_EAN_10_04_2005
  10. #define BOOST_XPRESSIVE_HPP_EAN_10_04_2005
  11. // MS compatible compilers support #pragma once
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  13. # pragma once
  14. #endif
  15. #include <boost/xpressive/xpressive_static.hpp>
  16. #include <boost/xpressive/xpressive_dynamic.hpp>
  17. #endif