Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/regex/test/regress/test_mfc.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: 950 bytes
Line 
1/*
2 *
3 * Copyright (c) 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_mfc.hpp
15  *   VERSION      see <boost/version.hpp>
16  *   DESCRIPTION: MFC/ATL test handlers.
17  */
18
19#ifndef TEST_MFC_HPP
20#define TEST_MFC_HPP
21
22template <class charT, class Tag>
23void test_mfc(const charT&, const Tag&)
24{
25   // do nothing
26}
27
28void test_mfc(const char&, const test_regex_search_tag&);
29void test_mfc(const wchar_t&, const test_regex_search_tag&);
30void test_mfc(const char&, const test_invalid_regex_tag&);
31void test_mfc(const wchar_t&, const test_invalid_regex_tag&);
32void test_mfc(const char&, const test_regex_replace_tag&);
33void test_mfc(const wchar_t&, const test_regex_replace_tag&);
34
35
36#endif
Note: See TracBrowser for help on using the repository browser.