// © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* ******************************************************************************* * Copyright (C) 2009-2016, International Business Machines Corporation, * * Google, and others. All Rights Reserved. * ******************************************************************************* */ #ifndef __TMUNIT_H__ #define __TMUNIT_H__ /** * \file * \brief C++ API: time unit object */ #include "unicode/utypes.h" #if U_SHOW_CPLUSPLUS_API #include "unicode/measunit.h" #if !UCONFIG_NO_FORMATTING U_NAMESPACE_BEGIN /** * Measurement unit for time units. * @see TimeUnitAmount * @see TimeUnit * @stable ICU 4.2 */ class U_I18N_API TimeUnit: public MeasureUnit { … }; U_NAMESPACE_END #endif /* #if !UCONFIG_NO_FORMATTING */ #endif /* U_SHOW_CPLUSPLUS_API */ #endif // __TMUNIT_H__ //eof //