ICU 62.1  62.1
fpositer.h
Go to the documentation of this file.
1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 /*
4 ********************************************************************************
5 * Copyright (C) 2010-2012, International Business Machines
6 * Corporation and others. All Rights Reserved.
7 ********************************************************************************
8 *
9 * File attiter.h
10 *
11 * Modification History:
12 *
13 * Date Name Description
14 * 12/15/2009 dougfelt Created
15 ********************************************************************************
16 */
17 
18 #ifndef FPOSITER_H
19 #define FPOSITER_H
20 
21 #include "unicode/utypes.h"
22 #include "unicode/uobject.h"
23 
29 #if UCONFIG_NO_FORMATTING
30 
32 
33 /*
34  * Allow the declaration of APIs with pointers to FieldPositionIterator
35  * even when formatting is removed from the build.
36  */
37 class FieldPositionIterator;
38 
40 
41 #else
42 
43 #include "unicode/fieldpos.h"
44 #include "unicode/umisc.h"
45 
47 
48 class UVector32;
49 
56 public:
62 
68 
75 
85 
92  UBool operator!=(const FieldPositionIterator& rhs) const { return !operator==(rhs); }
93 
99  UBool next(FieldPosition& fp);
100 
101 private:
107  void setData(UVector32 *adopt, UErrorCode& status);
108 
109  friend class FieldPositionIteratorHandler;
110 
111  UVector32 *data;
112  int32_t pos;
113 };
114 
116 
117 #endif /* #if !UCONFIG_NO_FORMATTING */
118 
119 #endif // FPOSITER_H
icu::FieldPosition
FieldPosition is a simple class used by Format and its subclasses to identify fields in formatted out...
Definition: fieldpos.h:108
utypes.h
Basic definitions for ICU, for both C and C++ APIs.
U_I18N_API
#define U_I18N_API
Definition: utypes.h:360
UBool
int8_t UBool
The ICU boolean type.
Definition: umachine.h:236
icu::FieldPositionIterator
FieldPositionIterator returns the field ids and their start/limit positions generated by a call to Fo...
Definition: fpositer.h:55
icu::operator==
U_EXPORT UBool operator==(const StringPiece &x, const StringPiece &y)
Global operator == for StringPiece.
umisc.h
C API:misc definitions.
fieldpos.h
C++ API: FieldPosition identifies the fields in a formatted output.
icu::UObject
UObject is the common ICU "boilerplate" class.
Definition: uobject.h:223
UErrorCode
UErrorCode
Error code to replace exception handling, so that the code is compatible with all C++ compilers,...
Definition: utypes.h:396
icu::FieldPositionIterator::operator!=
UBool operator!=(const FieldPositionIterator &rhs) const
Returns the complement of the result of operator==.
Definition: fpositer.h:92
uobject.h
C++ API: Common ICU base class UObject.
U_NAMESPACE_END
#define U_NAMESPACE_END
Definition: uversion.h:138
U_NAMESPACE_BEGIN
#define U_NAMESPACE_BEGIN
Definition: uversion.h:137