29 #ifndef __BASE_FLAGS_HH__ 30 #define __BASE_FLAGS_HH__ 41 Flags(Type flags) : _flags(flags) {}
61 bool isSet(Type flags)
const {
return (_flags & flags); }
62 bool allSet()
const {
return !(~_flags); }
63 bool allSet(Type flags)
const {
return (_flags & flags) == flags; }
64 bool noneSet()
const {
return _flags == 0; }
65 bool noneSet(Type flags)
const {
return (_flags & flags) == 0; }
67 void clear(Type flags) { _flags &= ~flags; }
68 void set(Type flags) { _flags |= flags; }
69 void set(Type
f,
bool val) { _flags = (_flags & ~f) | (
val ? f : 0); }
73 _flags = (_flags & ~mask) | (flags & mask);
77 #endif // __BASE_FLAGS_HH__ const Flags< FlagsType > & operator=(FlagsType flags)
bool allSet(Type flags) const
bool isSet(Type flags) const
bool noneSet(Type flags) const
void update(Type flags, Type mask)
const Flags< FlagsType > & operator=(const Flags< U > &flags)