xpressive_dynamic.hpp 907 B

12345678910111213141516171819202122232425
  1. ///////////////////////////////////////////////////////////////////////////////
  2. /// \file xpressive_dynamic.hpp
  3. /// Includes everything you need to write and use dynamic regular expressions.
  4. //
  5. // Copyright 2008 Eric Niebler. Distributed under the Boost
  6. // Software License, Version 1.0. (See accompanying file
  7. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  8. #ifndef BOOST_XPRESSIVE_DYNAMIC_HPP_EAN_10_04_2005
  9. #define BOOST_XPRESSIVE_DYNAMIC_HPP_EAN_10_04_2005
  10. // MS compatible compilers support #pragma once
  11. #if defined(_MSC_VER)
  12. # pragma once
  13. #endif
  14. #include <boost/xpressive/regex_compiler.hpp>
  15. #include <boost/xpressive/basic_regex.hpp>
  16. #include <boost/xpressive/sub_match.hpp>
  17. #include <boost/xpressive/match_results.hpp>
  18. #include <boost/xpressive/regex_algorithms.hpp>
  19. #include <boost/xpressive/regex_iterator.hpp>
  20. #include <boost/xpressive/regex_token_iterator.hpp>
  21. #endif