Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(40)

Side by Side Diff: icu46/source/i18n/msgfmt_impl.h

Issue 5516007: Check in the pristine copy of ICU 4.6... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « icu46/source/i18n/msgfmt.cpp ('k') | icu46/source/i18n/name2uni.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 /*
2 *******************************************************************************
3 * Copyright (C) 2007-2008, International Business Machines Corporation and
4 * others. All Rights Reserved. *
5 *******************************************************************************
6 *
7 * File MSGFMT.H
8 *
9 *******************************************************************************
10 */
11
12 #ifndef __MSGFMT_IMPL_H__
13 #define __MSGFMT_IMPL_H__
14
15 #include "unicode/utypes.h"
16
17 #if !UCONFIG_NO_FORMATTING
18
19 #include "unicode/msgfmt.h"
20 #include "uvector.h"
21 #include "unicode/strenum.h"
22
23 U_NAMESPACE_BEGIN
24
25 class FormatNameEnumeration : public StringEnumeration {
26 public:
27 FormatNameEnumeration(UVector *fFormatNames, UErrorCode& status);
28 virtual ~FormatNameEnumeration();
29 static UClassID U_EXPORT2 getStaticClassID(void);
30 virtual UClassID getDynamicClassID(void) const;
31 virtual const UnicodeString* snext(UErrorCode& status);
32 virtual void reset(UErrorCode& status);
33 virtual int32_t count(UErrorCode& status) const;
34 private:
35 int32_t pos;
36 UVector *fFormatNames;
37 };
38
39 U_NAMESPACE_END
40
41 #endif
42
43 #endif
OLDNEW
« no previous file with comments | « icu46/source/i18n/msgfmt.cpp ('k') | icu46/source/i18n/name2uni.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698