]> git.saurik.com Git - apple/icu.git/blame - icuSources/i18n/numsys_impl.h
ICU-64232.0.1.tar.gz
[apple/icu.git] / icuSources / i18n / numsys_impl.h
CommitLineData
f3c0d7a5
A
1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
4388f060
A
3/*
4*******************************************************************************
2ca993e8 5* Copyright (C) 2015, International Business Machines Corporation and
4388f060
A
6* others. All Rights Reserved. *
7*******************************************************************************
8*
9* File NUMSYS_IMPL.H
10*
11*******************************************************************************
12*/
13
14#ifndef __NUMSYS_IMPL_H__
15#define __NUMSYS_IMPL_H__
16
17#include "unicode/utypes.h"
18
19#if !UCONFIG_NO_FORMATTING
20
21#include "unicode/numsys.h"
22#include "uvector.h"
23#include "unicode/strenum.h"
24
25U_NAMESPACE_BEGIN
26
27class NumsysNameEnumeration : public StringEnumeration {
28public:
3d1f044b 29 NumsysNameEnumeration(UErrorCode& status);
2ca993e8 30
4388f060
A
31 virtual ~NumsysNameEnumeration();
32 static UClassID U_EXPORT2 getStaticClassID(void);
3d1f044b
A
33 virtual UClassID getDynamicClassID(void) const override;
34 virtual const UnicodeString* snext(UErrorCode& status) override;
35 virtual void reset(UErrorCode& status) override;
36 virtual int32_t count(UErrorCode& status) const override;
4388f060
A
37private:
38 int32_t pos;
4388f060
A
39};
40
41U_NAMESPACE_END
42
43#endif
44
45#endif