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
22 template <class charT, class Tag>
test_mfc(const charT &,const Tag &)23 void test_mfc(const charT&, const Tag&)
24 {
25 // do nothing
26 }
27
28 void test_mfc(const char&, const test_regex_search_tag&);
29 void test_mfc(const wchar_t&, const test_regex_search_tag&);
30 void test_mfc(const char&, const test_invalid_regex_tag&);
31 void test_mfc(const wchar_t&, const test_invalid_regex_tag&);
32 void test_mfc(const char&, const test_regex_replace_tag&);
33 void test_mfc(const wchar_t&, const test_regex_replace_tag&);
34
35
36 #endif
37