Home | History | Annotate | Download | only in unicode

Lines Matching defs:EnumSet

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