Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/regex/test/regress/test_deprecated.hpp @ 30

Last change on this file since 30 was 29, checked in by landauf, 17 years ago

updated boost from 1_33_1 to 1_34_1

File size: 927 bytes
Line 
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
22template <class charT, class Tag>
23void test_deprecated(const charT&, const Tag&)
24{
25   // do nothing
26}
27
28void test_deprecated(const char&, const test_regex_search_tag&);
29void test_deprecated(const wchar_t&, const test_regex_search_tag&);
30void test_deprecated(const char&, const test_invalid_regex_tag&);
31void test_deprecated(const wchar_t&, const test_invalid_regex_tag&);
32
33
34#endif
35
Note: See TracBrowser for help on using the repository browser.