]> git.saurik.com Git - apple/icu.git/blame - icuSources/common/ustrenum.h
ICU-3.13.tar.gz
[apple/icu.git] / icuSources / common / ustrenum.h
CommitLineData
b75a7d8f
A
1/*
2**********************************************************************
3* Copyright (c) 2002, International Business Machines
4* Corporation and others. All Rights Reserved.
5**********************************************************************
6* Author: Alan Liu
7* Created: November 11 2002
8* Since: ICU 2.4
9**********************************************************************
10*/
11#ifndef _USTRENUM_H_
12#define _USTRENUM_H_
13
14#include "unicode/uenum.h"
15#include "unicode/strenum.h"
16
17/**
18 * Given a StringEnumeration, wrap it in a UEnumeration. The
19 * StringEnumeration is adopted; after this call, the caller must not
20 * delete it (regardless of error status).
21 */
22U_CAPI UEnumeration* U_EXPORT2
23uenum_openStringEnumeration(StringEnumeration* adopted, UErrorCode* ec);
24
25/* _USTRENUM_H_ */
26#endif
27/*eof*/