]>
git.saurik.com Git - apple/icu.git/blob - icuSources/i18n/numsys_impl.h
1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
4 *******************************************************************************
5 * Copyright (C) 2015, International Business Machines Corporation and
6 * others. All Rights Reserved. *
7 *******************************************************************************
11 *******************************************************************************
14 #ifndef __NUMSYS_IMPL_H__
15 #define __NUMSYS_IMPL_H__
17 #include "unicode/utypes.h"
19 #if !UCONFIG_NO_FORMATTING
21 #include "unicode/numsys.h"
23 #include "unicode/strenum.h"
27 class NumsysNameEnumeration
: public StringEnumeration
{
29 // NumsysNameEnumeration instance adopts numsysNames
30 NumsysNameEnumeration(UVector
*numsysNames
, UErrorCode
& status
);
32 virtual ~NumsysNameEnumeration();
33 static UClassID U_EXPORT2
getStaticClassID(void);
34 virtual UClassID
getDynamicClassID(void) const;
35 virtual const UnicodeString
* snext(UErrorCode
& status
);
36 virtual void reset(UErrorCode
& status
);
37 virtual int32_t count(UErrorCode
& status
) const;
40 UVector
*fNumsysNames
;