regex.hpp 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. // (C) Copyright John Maddock 2005.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef BOOST_TR1_REGEX_HPP_INCLUDED
  6. # define BOOST_TR1_REGEX_HPP_INCLUDED
  7. # include <boost/tr1/detail/config.hpp>
  8. #ifdef BOOST_HAS_TR1_REGEX
  9. # if defined(BOOST_HAS_INCLUDE_NEXT) && !defined(BOOST_TR1_DISABLE_INCLUDE_NEXT)
  10. # include_next BOOST_TR1_HEADER(regex)
  11. # else
  12. # include <boost/tr1/detail/config_all.hpp>
  13. # include BOOST_TR1_STD_HEADER(BOOST_TR1_PATH(regex))
  14. # endif
  15. #else
  16. #include <boost/regex.hpp>
  17. namespace std{ namespace tr1{
  18. // [7.5] Regex constants
  19. namespace regex_constants {
  20. using ::boost::regex_constants::syntax_option_type;
  21. using ::boost::regex_constants::icase;
  22. using ::boost::regex_constants::nosubs;
  23. using ::boost::regex_constants::optimize;
  24. using ::boost::regex_constants::collate;
  25. using ::boost::regex_constants::ECMAScript;
  26. using ::boost::regex_constants::basic;
  27. using ::boost::regex_constants::extended;
  28. using ::boost::regex_constants::awk;
  29. using ::boost::regex_constants::grep;
  30. using ::boost::regex_constants::egrep;
  31. using ::boost::regex_constants::match_flag_type;
  32. using ::boost::regex_constants::match_default;
  33. using ::boost::regex_constants::match_not_bol;
  34. using ::boost::regex_constants::match_not_eol;
  35. using ::boost::regex_constants::match_not_bow;
  36. using ::boost::regex_constants::match_not_eow;
  37. using ::boost::regex_constants::match_any;
  38. using ::boost::regex_constants::match_not_null;
  39. using ::boost::regex_constants::match_continuous;
  40. using ::boost::regex_constants::match_prev_avail;
  41. using ::boost::regex_constants::format_default;
  42. using ::boost::regex_constants::format_sed;
  43. using ::boost::regex_constants::format_no_copy;
  44. using ::boost::regex_constants::format_first_only;
  45. using ::boost::regex_constants::error_type;
  46. using ::boost::regex_constants::error_collate;
  47. using ::boost::regex_constants::error_ctype;
  48. using ::boost::regex_constants::error_escape;
  49. using ::boost::regex_constants::error_backref;
  50. using ::boost::regex_constants::error_brack;
  51. using ::boost::regex_constants::error_paren;
  52. using ::boost::regex_constants::error_brace;
  53. using ::boost::regex_constants::error_badbrace;
  54. using ::boost::regex_constants::error_range;
  55. using ::boost::regex_constants::error_space;
  56. using ::boost::regex_constants::error_badrepeat;
  57. using ::boost::regex_constants::error_complexity;
  58. using ::boost::regex_constants::error_stack;
  59. } // namespace regex_constants
  60. // [7.6] Class regex_error
  61. using ::boost::regex_error;
  62. // [7.7] Class template regex_traits
  63. using ::boost::regex_traits;
  64. // [7.8] Class template basic_regex
  65. using ::boost::basic_regex;
  66. using ::boost::regex;
  67. #ifndef BOOST_NO_WREGEX
  68. using ::boost::wregex;
  69. #endif
  70. #if !BOOST_WORKAROUND(__BORLANDC__, < 0x0582)
  71. // [7.8.6] basic_regex swap
  72. using ::boost::swap;
  73. #endif
  74. // [7.9] Class template sub_match
  75. using ::boost::sub_match;
  76. using ::boost::csub_match;
  77. #ifndef BOOST_NO_WREGEX
  78. using ::boost::wcsub_match;
  79. #endif
  80. using ::boost::ssub_match;
  81. #ifndef BOOST_NO_WREGEX
  82. using ::boost::wssub_match;
  83. #endif
  84. // [7.10] Class template match_results
  85. using ::boost::match_results;
  86. using ::boost::cmatch;
  87. #ifndef BOOST_NO_WREGEX
  88. using ::boost::wcmatch;
  89. #endif
  90. using ::boost::smatch;
  91. #ifndef BOOST_NO_WREGEX
  92. using ::boost::wsmatch;
  93. #endif
  94. using ::boost::regex_match;
  95. // [7.11.3] Function template regex_search
  96. using ::boost::regex_search;
  97. // [7.11.4] Function template regex_replace
  98. using ::boost::regex_replace;
  99. // [7.12.1] Class template regex_iterator
  100. using ::boost::regex_iterator;
  101. using ::boost::cregex_iterator;
  102. #ifndef BOOST_NO_WREGEX
  103. using ::boost::wcregex_iterator;
  104. #endif
  105. using ::boost::sregex_iterator;
  106. #ifndef BOOST_NO_WREGEX
  107. using ::boost::wsregex_iterator;
  108. #endif
  109. // [7.12.2] Class template regex_token_iterator
  110. using ::boost::regex_token_iterator;
  111. using ::boost::cregex_token_iterator;
  112. #ifndef BOOST_NO_WREGEX
  113. using ::boost::wcregex_token_iterator;
  114. #endif
  115. using ::boost::sregex_token_iterator;
  116. #ifndef BOOST_NO_WREGEX
  117. using ::boost::wsregex_token_iterator;
  118. #endif
  119. } } // namespaces
  120. #endif
  121. #endif