2017-01-20 00:20:31 +00:00
|
|
|
// © 2016 and later: Unicode, Inc. and others.
|
2016-06-15 18:58:17 +00:00
|
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
2006-01-23 23:45:12 +00:00
|
|
|
/*
|
|
|
|
********************************************************************************
|
2016-05-31 21:45:07 +00:00
|
|
|
* Copyright (C) 2005-2011, International Business Machines
|
|
|
|
* Corporation and others. All Rights Reserved.
|
2006-01-23 23:45:12 +00:00
|
|
|
********************************************************************************
|
|
|
|
*
|
|
|
|
* File WINNMTST.H
|
|
|
|
*
|
|
|
|
********************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINNMTST
|
|
|
|
#define __WINNMTST
|
|
|
|
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
|
2011-08-18 18:47:16 +00:00
|
|
|
#if U_PLATFORM_USES_ONLY_WIN32_API
|
2006-01-23 23:45:12 +00:00
|
|
|
|
|
|
|
#if !UCONFIG_NO_FORMATTING
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* \brief C++ API: Format dates using Windows API.
|
|
|
|
*/
|
|
|
|
|
2017-04-08 04:20:31 +00:00
|
|
|
class NumberFormatTest;
|
2006-01-23 23:45:12 +00:00
|
|
|
|
|
|
|
class Win32NumberTest
|
|
|
|
{
|
|
|
|
public:
|
2017-04-08 04:20:31 +00:00
|
|
|
static void testLocales(NumberFormatTest *log);
|
2006-01-23 23:45:12 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Win32NumberTest();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* #if !UCONFIG_NO_FORMATTING */
|
|
|
|
|
2011-08-18 18:47:16 +00:00
|
|
|
#endif // U_PLATFORM_USES_ONLY_WIN32_API
|
2006-01-23 23:45:12 +00:00
|
|
|
|
|
|
|
#endif // __WINNMTST
|