// © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* ********************************************************************** * Copyright (c) 2002-2014, International Business Machines * Corporation and others. All Rights Reserved. ********************************************************************** * Author: Alan Liu * Created: November 11 2002 * Since: ICU 2.4 ********************************************************************** */ #ifndef _USTRENUM_H_ #define _USTRENUM_H_ #include "unicode/uenum.h" #include "unicode/strenum.h" //---------------------------------------------------------------------- U_NAMESPACE_BEGIN /** * A wrapper to make a UEnumeration into a StringEnumeration. The * wrapper adopts the UEnumeration is wraps. */ class U_COMMON_API UStringEnumeration : public StringEnumeration { … }; U_NAMESPACE_END #endif