blob: e76e634dd23c072e3e3791a3c82af5923f987c2e [file] [log] [blame]
Victor Chang73229502020-09-17 13:39:19 +01001// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
3/*
4*******************************************************************************
5* Copyright (C) 2015, International Business Machines Corporation and
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:
29 NumsysNameEnumeration(UErrorCode& status);
30
31 virtual ~NumsysNameEnumeration();
32 static UClassID U_EXPORT2 getStaticClassID(void);
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;
37private:
38 int32_t pos;
39};
40
41U_NAMESPACE_END
42
43#endif
44
45#endif