xpressive_static.hpp 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. ///////////////////////////////////////////////////////////////////////////////
  2. /// \file xpressive_static.hpp
  3. /// Includes everything you need to write static regular expressions and use
  4. /// them.
  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_STATIC_HPP_EAN_10_04_2005
  10. #define BOOST_XPRESSIVE_STATIC_HPP_EAN_10_04_2005
  11. // MS compatible compilers support #pragma once
  12. #if defined(_MSC_VER)
  13. # pragma once
  14. #endif
  15. #ifdef _MSC_VER
  16. // inline aggressively
  17. # pragma inline_recursion(on) // turn on inline recursion
  18. # pragma inline_depth(255) // max inline depth
  19. #endif
  20. #include <boost/xpressive/regex_primitives.hpp>
  21. #include <boost/xpressive/basic_regex.hpp>
  22. #include <boost/xpressive/sub_match.hpp>
  23. #include <boost/xpressive/match_results.hpp>
  24. #include <boost/xpressive/regex_algorithms.hpp>
  25. #include <boost/xpressive/regex_iterator.hpp>
  26. #include <boost/xpressive/regex_token_iterator.hpp>
  27. #endif