class EE::UI::CSS::PropertyIdSetIterator

#include <propertyidset.hpp>

class PropertyIdSetIterator {
public:
    // construction

    PropertyIdSetIterator();
    PropertyIdSetIterator(const PropertyIdSet* container, std::size_t bitIndex);

    // methods

    PropertyIdSetIterator& operator++();
    bool operator==(const PropertyIdSetIterator& other) const;
    bool operator!=(const PropertyIdSetIterator& other) const;
    PropertyId operator*() const;
};