Home | History | Annotate | Download | only in unicode

Lines Matching defs:EnumSet

14  * \brief C++: internal template EnumSet<>
26 /* Can't use #ifndef U_HIDE_INTERNAL_API for the entire EnumSet class, needed in .h file declarations */
28 * enum bitset for boolean fields. Similar to Java EnumSet<>.
33 class EnumSet {
35 inline EnumSet() : fBools(0) {}
36 inline EnumSet(const EnumSet<T,minValue,limitValue>& other) : fBools(other.fBools) {}
37 inline ~EnumSet() {}
47 inline const EnumSet<T,minValue,limitValue>& operator=(const EnumSet<T,minValue,limitValue>& other) {