]>
Commit | Line | Data |
---|---|---|
f3c0d7a5 A |
1 | // © 2016 and later: Unicode, Inc. and others. |
2 | // License & terms of use: http://www.unicode.org/copyright.html | |
73c04bcf A |
3 | /* |
4 | ******************************************************************************** | |
4388f060 | 5 | * Copyright (C) 2005-2011, International Business Machines |
73c04bcf A |
6 | * Corporation and others. All Rights Reserved. |
7 | ******************************************************************************** | |
8 | * | |
9 | * File WINDTTST.H | |
10 | * | |
11 | ******************************************************************************** | |
12 | */ | |
13 | ||
14 | #ifndef __WINDTTST | |
15 | #define __WINDTTST | |
16 | ||
17 | #include "unicode/utypes.h" | |
18 | ||
f3c0d7a5 | 19 | #if U_PLATFORM_USES_ONLY_WIN32_API |
73c04bcf A |
20 | |
21 | #if !UCONFIG_NO_FORMATTING | |
22 | ||
23 | /** | |
24 | * \file | |
25 | * \brief C++ API: Format dates using Windows API. | |
26 | */ | |
27 | ||
f3c0d7a5 | 28 | class DateFormatTest; |
73c04bcf A |
29 | |
30 | class Win32DateTimeTest | |
31 | { | |
32 | public: | |
f3c0d7a5 | 33 | static void testLocales(DateFormatTest *log); |
73c04bcf A |
34 | |
35 | private: | |
36 | Win32DateTimeTest(); | |
37 | }; | |
38 | ||
39 | #endif /* #if !UCONFIG_NO_FORMATTING */ | |
40 | ||
f3c0d7a5 | 41 | #endif // U_PLATFORM_USES_ONLY_WIN32_API |
73c04bcf A |
42 | |
43 | #endif // __WINDTTST |