test_deprecated.hpp 927 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. *
  3. * Copyright (c) 1998-2004
  4. * John Maddock
  5. *
  6. * Use, modification and distribution are subject to the
  7. * Boost 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. */
  11. /*
  12. * LOCATION: see http://www.boost.org for most recent version.
  13. * FILE test_deprecated.hpp
  14. * VERSION see <boost/version.hpp>
  15. * DESCRIPTION: Forward declare deprecated test functions.
  16. */
  17. #ifndef BOOST_REGEX_TEST_DEPRECATED
  18. #define BOOST_REGEX_TEST_DEPRECATED
  19. template <class charT, class Tag>
  20. void test_deprecated(const charT&, const Tag&)
  21. {
  22. // do nothing
  23. }
  24. void test_deprecated(const char&, const test_regex_search_tag&);
  25. void test_deprecated(const wchar_t&, const test_regex_search_tag&);
  26. void test_deprecated(const char&, const test_invalid_regex_tag&);
  27. void test_deprecated(const wchar_t&, const test_invalid_regex_tag&);
  28. #endif