class EE::UI::CSS::PropertyIdSet¶
#include <propertyidset.hpp> class PropertyIdSet { public: // methods void insert(Uint32 id); void clear(); void erase(Uint32 id); bool empty() const; bool contains(Uint32 id) const; size_t size() const; bool operator==(const PropertyIdSet& other); bool operator!=(const PropertyIdSet& other); PropertyIdSet& operator|=(const PropertyIdSet& other); PropertyIdSet operator|(const PropertyIdSet& other) const; PropertyIdSet& operator&=(const PropertyIdSet& other); PropertyIdSet operator&(const PropertyIdSet& other) const; PropertyIdSetIterator begin() const; PropertyIdSetIterator end() const; PropertyIdSetIterator erase(const PropertyIdSetIterator& it); };