• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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   /*
13    *   LOCATION:    see http://www.boost.org for most recent version.
14    *   FILE         test_deprecated.hpp
15    *   VERSION      see <boost/version.hpp>
16    *   DESCRIPTION: Forward declare deprecated test functions.
17    */
18  
19  #ifndef BOOST_REGEX_TEST_DEPRECATED
20  #define BOOST_REGEX_TEST_DEPRECATED
21  
22  template <class charT, class Tag>
test_deprecated(const charT &,const Tag &)23  void test_deprecated(const charT&, const Tag&)
24  {
25     // do nothing
26  }
27  
28  void test_deprecated(const char&, const test_regex_search_tag&);
29  void test_deprecated(const wchar_t&, const test_regex_search_tag&);
30  void test_deprecated(const char&, const test_invalid_regex_tag&);
31  void test_deprecated(const wchar_t&, const test_invalid_regex_tag&);
32  
33  
34  #endif
35  
36