#pragma once #include #include "storage/label/label.hpp" class LabelCollection { public: auto begin(); auto begin() const; auto cbegin() const; auto end(); auto end() const; auto cend() const; bool add(const Label& label); bool has(const Label& label) const; size_t count() const; bool remove(const Label& label); void clear(); const std::set& operator()() const; private: std::set _labels; };